:root {
    --primary-color: #053E78;
    --dark-green: #01322C;
    --text-color: #F6FEF9;
    --black: #3E424D;
    --light-gray: #A9ABB1;
    --light-blue: #F0F7FE;
    --dark-black: #30343C;
    --white: #FFF;
    --outline-color: #B2C3D5;
    --success-color: #0DA500;
    --error-color: #F00;
    --warning-color: #FFA63A;
}

body {
    font-family: "Open Sans", sans-serif;
}

ul {
    margin-bottom: 0px;
    padding: 0px;
}

li {
    list-style-type: none;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color) !important;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--black) !important;
}

a,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0px;
}

input:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none !important;
}

.nav-web {
    display: none !important;
}

.side-bar-header {
    background-color: var(--light-blue);
}

header {
    background-color: var(--light-blue);
}

.header {
    /* padding: 10px 0px; */
}

select {
    /* -webkit-box-sizing: border-box; */
    /* -moz-box-sizing: border-box; */
    /* box-sizing: border-box; */
    -webkit-appearance: none;
    /* -moz-appearance: none; */
    background-image:
        linear-gradient(45deg, transparent 50%, #444955 50%),
        linear-gradient(135deg, #444955 50%, transparent 50%),
        linear-gradient(to right, white, white);
    background-position:
        calc(100% - 20px) calc(1em + 2px),
        calc(100% - 15px) calc(1em + 2px),
        100% 0;
    background-size:
        5px 5px,
        5px 5px,
        2.5em 2.5em;
    background-repeat: no-repeat;
}

select:focus {
    background-image:
        linear-gradient(45deg, #444955 50%, transparent 50%),
        linear-gradient(135deg, transparent 50%, #444955 50%),
        linear-gradient(to right, white, white);
    background-position:
        calc(100% - 15px) 1em,
        calc(100% - 20px) 1em,
        100% 0;
    background-size:
        5px 5px,
        5px 5px,
        2.5em 2.5em;
    background-repeat: no-repeat;
    border-color: grey;
    outline: 0;
}

/* =================================================================================================== */
button.btn-bg {
    border: none;
}

.font-24-28-600 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
}

header .font-16-24-400,
.nav-item .font-16-24-400 {
    color: var(--black);
}

.font-16-24-400 {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}

.font-16-24-600 {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    color: var(--black) !important;
}

.navbar-nav {
    gap: 26px;
}

.btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
    color: var(--primary-color) !important;
    padding: 12px 24px;
    border-radius: 4px;
}

.btn-outline:hover {
    background-color: #E6ECF2;
    color: #05386D;
}

.btn-outline:focus {
    outline: 2px solid var(--outline-color);
}

.btn-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 4px;
    height: fit-content;
}

.back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    height: fit-content;
    background-color: transparent;
    border-radius: 4px;
    padding: 12px 0px;
    color: var(--primary-color) !important;
    width: fit-content;
}

/* .back-btn:hover {
    padding: 12px 24px;
    background-color: #E6ECF2;
    border: 1px solid #05386D;
}

.back-btn:focus {
    border: 1px solid #05386D;
    outline: 2px solid var(--outline-color);
} */

.back-btn svg,
.btn-outline svg {
    margin-right: 12px;
}

.btn-bg:hover {
    background-color: #05386D;
}

.btn-bg:focus {
    outline: 4px solid var(--outline-color) !important;
}

.gap-24 {
    gap: 24px;
}

header .logo {
    height: 50px;
}

.section-padding {
    padding: 32px 0px;
}

.register-page-img-div {
    margin-top: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 28px;
}

.register-page-img-div img {
    width: 100%;
}

.register-page-left .font-24-28-600 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.font-16-24-400 span {
    font-weight: 600;
}

.field .font-16-24-400 {
    color: var(--dark-black);
    font-weight: 600;
    margin-bottom: 12px;
}

.field .font-16-24-400 a {
    margin-left: 8px !important;
}

.field input,
select,
.input-div,
.select-div,
.field textarea {
    padding: 8px 12px;
    border-radius: 4px;
    width: 100%;
    border: 1px solid var(--light-gray);
    background-color: var(--white);
}

.input-div {
    padding: 0px;
    display: flex;
    align-items: center;
}

.field input:not(:disabled):hover,
.field select:not(:disabled):hover,
.field textarea:not(:disabled):hover {
    border: 1px solid #05386D;
}

.input-div:hover {
    border: 1px solid #05386D;
}

.input-div:hover input:not(:disabled) {
    border: none !important;
    outline: none !important;
}

.input-div input:focus {
    outline: none !important;
    border: none !important;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border: 1px solid var(--light-gray);
    outline: 2px solid #8CA6C1;
    /* margin: 1px; */
}

select {
    padding-right: 40px !important;
}

select::before {
    right: 20px;
}

.btn-bg svg {
    margin-left: 12px;
}

.already-login {
    color: var(--black);
}

.already-login a {
    margin-left: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.privacy-and-terms {
    gap: 40px;
    justify-content: space-between;
    margin-top: 64px;
}

.font-14-24-400 {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.privacy-and-terms .font-14-24-400 {
    color: #82858D;
}

.tooltip {
    position: relative;
    opacity: 1;
}

.tooltip::before {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translatex(-50%) rotate(-45deg);
    content: "";
    display: none;
    width: 0;
    height: 0;
    border: 8px solid #E6ECF2;
    border-top-color: transparent;
    border-right-color: transparent;
}

.tooltip::after {
    display: none;
    position: absolute;
    content: attr(data-tooltip);
    bottom: calc(100% + 8px);
    left: -135px;
    right: 0;
    background-color: #E6ECF2;
    border-radius: 8px;
    color: #000;
    padding: 16px;
    width: 300px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: var(--black);
}

.tooltip:hover:not(:focus)::before,
.tooltip:hover:not(:focus)::after {
    display: block;
}

/* Nav Mobile=============================================== */
.side-bar {
    background: white;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -1000px;
    transition: 0.8s ease ease-in-out;
    transition-property: right;
    z-index: 20000;
}

.side-bar.active {
    right: 0;
}

.side-bar .menu {
    width: 100%;
   padding-top: 30px;
}

.side-bar .menu .item {
    position: relative;
    cursor: pointer;
}

.side-bar .menu .item a {
    color: var(--black);
    font-size: 16px;
    text-decoration: none;
    display: block;
    padding: 5px 30px;
    /* line-height: 50px; */
}

.side-bar .menu .item a:hover {
    background: var(--primary-color);
    transition: 0.8s ease;
    color: var(--white);
}

.side-bar .menu .item i {
    margin-right: 15px;
}

.side-bar .menu .item a .dropdown {
    position: absolute;
    right: 0;
    margin: 20px;
    transition: 0.8s ease;
}

.side-bar .menu .item .sub-menu {
    background: white;
    display: none;
}

.side-bar .menu .item .sub-menu a {
    padding: 10px 0px 10px 80px;
    line-height: 30px;
}

.menu-btn {
    color: rgb(0, 0, 0);
    font-size: 22px;
    cursor: pointer;
}

header .main {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.side-bar header {
    background: white;
    padding: 15px 30px;
    display: flex;
    align-items: center;
}

.menu .active {
    background-color: var(--primary-color);
}

.menu .active a {
    color: white !important;
}

/* ============================================================ */

.privacy-web {
    display: none !important;
}

.password-field {
    position: relative;
}

.showPass {
    position: absolute;
    cursor: pointer;
    right: 12px;
    z-index: 9;
    top: 8px;
}

.login-btn {
    width: 100%;
}

.login-btn a {
    width: 100%;
}

.forgot-pw {
    color: var(--primary-color);
    font-weight: 600;
}

form {
    margin-top: 32px;
}

/* wizard======================================= */

.wizard-steps {
    display: flex;
    margin-bottom: 20px;
    gap: 8px;
    margin: 48px 0px;
}

.step {
    border-radius: 2px;
    padding-bottom: 4px;
    border-bottom: 6px solid var(--light-gray);
    color: var(--light-gray);
    width: 100%;
}

.wizard-renewal .step {
    width: 117px;
}

.wizard-renewal .step.current {
    width: 367px !important;
}

.step.completed {
    border-bottom: 6px solid var(--dark-black);
    color: transparent;
}

.wizard-renewal .wizard-steps p {
    display: none;
}

.tick-circle {
    margin-right: 8px;
}

.tick-circle {
    display: none;
}

.step-label {
    color: var(--light-gray);
}

.step.step.completed p {
    display: none;
}

.step.completed .tick-circle {
    height: 15px;
    width: 15px;
    display: block;
}

.step.step.completed .step-label {
    display: block;
    color: var(--dark-black);
    font-weight: 600;
}

.wizard-btn-div {
    margin-top: 24px;
}

.wizard button {
    width: fit-content;
}

/* ========================================= */

.full-width-btn {
    width: 100% !important;
}

/* password strength===================================== */

#password-strength {
    display: block;
    position: relative;
    font-size: 0px;
    margin-top: 8px;
}

#PasswordForm .box {
    position: relative;
    width: 20%;
    height: 8px;
    display: inline-block;
    background-color: var(--light-gray);
    text-align: center;
}

.bar-text {
    color: var(--black);
    z-index: 3;
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    width: fit-content;
}

#PasswordForm .box div.bar {
    width: 0%;
    height: 100%;
    z-index: 2;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    transition: 1s;
}

.password-strength-outer {
    gap: 16px;
}

#PasswordForm .normal .box.box1 div.bar {
    background: #FF0000;
    width: 100%;
}

.box.box1,
#PasswordForm .box.box1 div.bar {
    border-radius: 5px 0px 0px 5px;
}

.box.box4,
#PasswordForm .box.box4 div.bar {
    border-radius: 0px 5px 5px 0px;
}

#PasswordForm .medium .box.box1 div.bar {
    background: #E66C2C;
    width: 100%;
}

#PasswordForm .medium .box.box2 div.bar {
    background: #E66C2C;
    width: 100%;
}

#PasswordForm .strong .box.box1 div.bar {
    background: #2D98F3;
    width: 100%;
}

#PasswordForm .strong .box.box2 div.bar {
    background: #2D98F3;
    width: 100%;
}

#PasswordForm .strong .box.box3 div.bar {
    background: #2D98F3;
    width: 100%;
}

#PasswordForm .vstrong .box.box1 div.bar {
    background: #006400;
    width: 100%;
}

#PasswordForm .vstrong .box.box2 div.bar {
    background: #006400;
    width: 100%;
}

#PasswordForm .vstrong .box.box3 div.bar {
    background: #006400;
    width: 100%;
}

#PasswordForm .vstrong .box.box4 div.bar {
    background: #006400;
    width: 100%;
}

/* renewal============================================================================================================= */

.logo-2 {
    height: 96px;
}

.font-20-24-600 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

.header-right {
    gap: 120px;
    padding-right: 48px;
}

.user-name {
    margin: 0px 16px 0px 36px;
}

.user-img {
    width: 48px;
    border-radius: 100%;
}

footer {
    padding: 24px 48px 36px 48px;
    border-top: 1px solid #053e7866;
    background-color: var(--white);
}

.font-12-16-400 {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: var(--black);
    opacity: 0.6;
}

.footer-privacy {
    gap: 50px;
}

.dashboard-nav {
    position: fixed;
    top: 96px;
    left: 0;
    width: 270px;
    height: calc(100vh - 96px);
    padding: 32px 24px;
    display: none !important;
}

.renewal-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}

main {
    background-color: #FAFAFA;
    padding: 12px;
    margin: 12px;
}

.header-container{
    padding: 12px;
    /* margin: 0px 12px; */
}

.dashboard-nav-item svg {
    margin-right: 16px;
}

.dashboard-nav ul {
    gap: 16px;
}

.dashboard-nav-item a {
    padding: 12px 20px;
    display: flex;
    width: 100%;
}

.dashboard-active,
.dashboard-nav-item:hover {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.dashboard-active a,
.dashboard-nav-item:hover a {
    color: #F5F5F5 !important;
}

.dashboard-active svg path,
.dashboard-nav-item:hover svg path {
    stroke: #F5F5F5;
}

.link-div {
    padding: 8px 12px;
}

.link-div .current-link,
.link-div span {
    color: #797979 !important;
    width: max-content;
}

.link-div span {
    margin: 0px 5px;
}

.horiz-line {
    width: 1px;
    height: 19px;
    background: #B5B5B5;
    display: none;
}

.renewal-left-header label {
    color: #797979;
    padding: 0px 12px;
}

.renewal-left-header {
    margin-bottom: 24px;
}

.renewal-left-div {
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0px 20px 24px -4px rgba(0, 0, 0, 0.08), 0px 8px 8px -4px rgba(0, 0, 0, 0.03);
    background-color: var(--white);
}

.renewal-left .wizard-steps {
    margin-top: 0px;
}

input:disabled,
select:disabled {
    background: #C5C7CA;
}

.renewal-left-div-inner {
    padding: 12px;
    gap: 12px;
    background: #F7F7F7;
    border-radius: 4px;
    margin-bottom: 16px;
}

.renewal-left-div-inner img {
    height: fit-content;
}

.renewal-left-div-inner .font-16-24-600,
.renewal-left-div-inner .font-16-24-400 {
    color: #656973;
}

.renewal-left-div-inner .font-16-24-600 {
    margin-bottom: 8px;
}

.italic-p {
    color: var(--primary-color);
    font-style: italic;
}

.renewal-left-bottom-div {
    margin-top: 32px;
}

.renewal-left {
    width: 100%;
}

.contact-us-link {
    font-weight: 400 !important;
    margin-left: 0px !important;
    text-decoration: underline !important;
    color: var(--primary-color) !important;
}

.renewal-right {
    gap: 32px;
}

.renewal-right-div {
    padding: 24px;
    border-radius: 12px;
    background-color: var(--white);
    margin-top: 24px;
}

.renewal-right-div .font-16-24-600 {
    margin-bottom: 8px;
}

.renewal-right-div .font-16-24-600.secont-title {
    margin-top: 30px;
}

.renewal-right-div a {
    margin-bottom: 0 !important;
}

.renewal-right-div .font-16-24-400 {
    color: #656973;
    margin-bottom: 24px;
}

.renewal-main {
    gap: 60px;
}

.step.current {
    border-bottom: 6px solid var(--dark-black);
    color: var(--dark-black) !important;
    font-weight: 600 !important;
}

.wizard-renewal .step.current p {
    display: block;
}

.wizard-renewal .step.current label {
    display: none;
}

.step.current .font-16-24-400 {
    color: var(--dark-black) !important;
    font-weight: 600 !important;
}

.renewal-right-div .font-20-24-600 {
    color: var(--dark-black);
    margin-bottom: 24px;
}

.renewal-right-div .renewal-left-div-inner p {
    margin-bottom: 0px;
}

.renewal-right-div .renewal-left-div-inner p svg {
    margin-right: 5px;
}

.renewal-right-div .renewal-left-div-inner {
    margin-top: 16px;
}

.renewal-right-div .contact-us-link-div {
    margin-top: 24px;
}

.d-flex-fields .field {
    width: 100%;
}

.renewal-left-bottom-div .font-20-24-600 {
    margin-bottom: 8px;
    color: var(--dark-black);
}

.renewal-left-divs {
    margin: 32px 0px;
}

.renewal-left-divs .btn-outline {
    margin-top: 8px;
}

/* Video================================================== */

.wrapper {
    width: 100%;
    float: none !important;
    display: block;
    /* margin: 0 auto !important; */
    /* max-width: 1280px; */
    border-radius: 50px;
}

video {
    border-radius: 18px;
}

.HomeVideoInner {
    width: 100%;
    height: 100%;
    position: relative;
}

.StoryVideo video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.HomeVideoTitleSection {
    position: relative;
}

.HomeVideoTitleSection .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.HomeVideoTitleSection img {
    border-radius: 16px;
    width: 100%;
    border-radius: 8px;
}

.HomeVideoTitleSection .SectionTitle {
    width: 100%;
}

.HomeVideoTitleSection .SectionContent {
    width: 100%;
    padding-top: 240px;
}

.HomeVideoTitleSection:not(.animate_it) {
    -webkit-clip-path: circle(100% at 50% 50%);
    clip-path: circle(100% at 50% 50%);
}

.HomeVideoTitleSection.animate_it {
    animation: inView 1s;
    -webkit-clip-path: circle(0% at 0% 50%);
    clip-path: circle(0% at 0% 50%);
}

.HomeVideoTitleSection.animate_reverse {
    animation: outView 1s;
    -webkit-clip-path: circle(100% at 50% 50%);
    clip-path: circle(100% at 50% 50%);
}

.StoryVideo {
    max-height: 500px;
}

.StoryVideo video {
    width: 100%;
    height: 100%;
    object-fit: fill;
    position: absolute;
}

@keyframes inView {
    0% {
        -webkit-clip-path: circle(100% at 50% 50%);
        clip-path: circle(100% at 50% 50%);
    }

    to {
        -webkit-clip-path: circle(0% at 0% 50%);
        clip-path: circle(0% at 0% 50%);
    }
}

@keyframes outView {
    0% {
        -webkit-clip-path: circle(0% at 0% 50%);
        clip-path: circle(0% at 0% 50%);

    }

    to {
        -webkit-clip-path: circle(100% at 50% 50%);
        clip-path: circle(100% at 50% 50%);
    }
}

.Video-playbtn {
    cursor: pointer;
    width: fit-content;
    position: absolute;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    z-index: 9;
}

/* ========================================================= */

.privacy-and-terms a:hover,
.footer-privacy a:hover {
    color: var(--primary-color) !important;
}

.dashboard-help-and-logout {
    margin-top: auto;
}

.toast-show {
    width: 100%;
    color: white;
    padding: 10px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    transition: opacity 0.5s, visibility 0.5s !important;
}

.toast-show.success {
    background-color: var(--success-color);
}

.toast-show.error {
    background-color: var(--error-color);
}

.login-btn button {
    width: 100%;
}

/* magnify input================================== */

.input-div {
    display: flex;
    flex: 1;
}

.magnify {
    display: flex;
    margin: 0px 12px;
    cursor: pointer;
}

.input-div input {
    flex: 100%;
    background-color: transparent;
    overflow: hidden;
    resize: none;
    border: none;
    word-wrap: break-word;
    outline: none;
}

/* ============================================== */

.your-age {
    margin-bottom: 0px !important;
    font-weight: 400 !important;
    margin-left: 5px;
}

.tooltip {
    display: flex;
}

.age-field .tooltip {
    margin-right: 5px;
}

/* Drag And Drop=================================================================== */

.drop-zone {
    padding: 32px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid var(--light-gray);
    height: 200px;
    flex-direction: column;
}

.drop-zone__prompt {
    color: var(--light-gray);
    border: 1px dashed rgba(5, 62, 120, 0.60);
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    padding: 16px 24px;
    width: 100%;
}

.drop-zone--over {
    border-style: solid;
}

.drop-zone__input {
    display: none;
}

.drop-zone__thumb {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    /* overflow: hidden; */
    background-color: #cccccc;
    background-size: cover;
    position: relative;
}

.drop-zone__thumb::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    text-align: center;
    margin-top: -100px;
}

/* ============================================== */

.payment-successful-div,
.dashboard-div {
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(169, 171, 177, 0.40);
    background-color: var(--white);
    width: 100%;
}

.gap-64 {
    gap: 20px;
}

.successfull-bg {
    padding: 48px;
    background: rgba(13, 165, 0, 0.05);
    border-radius: 100%;
    height: 192px;
    width: 192px;
}

.font-40-48-600 {
    font-size: 28px;
    line-height: 38px;
    font-weight: 600;
    color: var(--dark-black);
}

.gap-16 {
    gap: 10px;
}

.payment-successful-div p {
    color: #696D77;
}

.payment-successful-div h6 {
    color: var(--black);
}

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

.payment-detail {
    padding: 16px 0px;
}

.payment-successful-div .total-div {
    border-top: 2px solid rgba(169, 171, 177, 0.20);
    padding: 24px 0px;
}

.font-24-32-400 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}

.font-24-32-600 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
}

.download-reciept {
    margin-top: 24px;
    gap: 8px;
}

.download-reciept .font-16-24-600 {
    color: var(--primary-color);
    text-decoration: underline;
}

.payment-successful-div .font-20-24-600 {
    color: var(--dark-black);
    margin-bottom: 24px;
}

.document-div {
    padding: 8px 12px;
    gap: 12px;
}

.document-div p {
    color: #656973;
}

.document-div li {
    list-style-type: disc;
}

p strong {
    font-weight: 600;
}

.document-div ul {
    margin-left: 24px;
    margin-top: 16px;
}

.payment-successful-div .reduced-width-p {
    width: 85%;
}

.envelope-div {
    margin-top: 32px;
    padding: 36px;
    border: 1px solid #B2C3D5;
    border-radius: 8px;
}

.envelope-header {
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(169, 171, 177, 0.20);
    margin-bottom: 24px;
}

.envelope-header p {
    color: var(--black);
}

.envelope-body {
    padding: 12px 0px;
}

.envelope-address {
    width: 195px;
}

.envelope-address .font-16-24-600 {
    color: #696D77;
    margin-bottom: 8px;
}

.envelope-address .font-16-24-400 {
    color: #696D77;
    margin-bottom: 4px;
}

.envelope-title {
    color: #696D77 !important;
    margin-bottom: 10px !important;
    width: 85%;
}

.font-32-38-600 {
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
}

.dashboard-div .font-32-38-600 {
    color: var(--dark-black);
}

.pending-renewal-div {
    border-radius: 60px;
    border: 2px solid var(--warning-color);
    background: rgba(255, 166, 58, 0.10);
    padding: 8px 16px;
    gap: 8px;
    width: fit-content;
    margin-top: 10px;
}

.font-color-orange {
    color: var(--warning-color);
}

.font-color-gray1 {
    color: #696D77;
}

.font-color-purple {
    color: #B566FF;
}

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

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

.prograss-div-outer {
    padding: 12px;
    border-radius: 8px;
    background: var(--surface-page, #FFF);
    box-shadow: 0px 20px 24px -4px rgba(0, 0, 0, 0.08), 0px 8px 8px -4px rgba(0, 0, 0, 0.03);
}

.font-16-24-600 svg {
    margin: 0px 8px;
}

.reviewing-div {
    border-radius: 60px;
    border: 2px solid #B566FF;
    background: rgba(181, 102, 255, 0.10);
    gap: 8px;
    padding: 8px 16px;
    width: fit-content;
    margin-top: 10px;
}

.return-div {
    border-radius: 60px;
    border: 2px solid var(--error-color);
    background: rgba(247, 103, 103, 0.1);
    gap: 8px;
    padding: 8px 16px;
    width: fit-content;
    margin-top: 10px;
}

.font-12-24-400 {
    font-size: 12px;
    line-height: 24px;
    font-weight: 400;
}

.font-20-32-600 {
    font-size: 20px;
    line-height: 32px;
    font-weight: 600;
}

.prograss-div .font-12-24-400 {
    margin-bottom: 4px;
}

.prograss-div .font-20-32-600 {
    margin-bottom: 8px;
}

.progress {
    display: flex;
    height: 16px;
    width: 100%;
    overflow: hidden;
    font-size: .75rem;
    background-color: #E6ECF2;
    border-radius: 60px;
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: var(--primary-color);
    border-radius: 60px;
}

.font-color-dark-black {
    color: var(--dark-black);
}

.gap-32 {
    gap: 32px;
}

.date-field {
    padding: 8px 12px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
}

.timer-div {
    padding: 8px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    height: fit-content;
    text-align: center;
}

.font-28-24-600 {
    font-size: 28px;
    line-height: 24px;
    font-weight: 600;
}

.gap-12 {
    gap: 12px;
}

.font-color-696D77 {
    color: #696D77;
}

.gap-8 {
    gap: 8px;
}

.timer-div .font-12-24-400 {
    margin-bottom: 0;
    line-height: 20px !important;
}

/* accordian================================================== */

.accordion {
    overflow: hidden;
}

.accordion-checkbox {
    display: none;
}

.accordion-header {
    padding: 4px 0px;
    cursor: pointer;
    border-bottom: 1px solid rgba(169, 171, 177, 0.40);
    margin-bottom: 32px;
}

.accordion-content {
    height: 0px;
    overflow: hidden;
    /* transition: height 1s ease; */
}

.accordion-checkbox:checked+.accordion-header+.accordion-content {
    height: fit-content;
}

.arrow-up {
    display: none;
}

.accordion-checkbox:checked+.accordion-header .arrow-up {
    display: block;
}

.accordion-checkbox:checked+.accordion-header .arrow-down {
    display: none;
}

/* ========================================================================== */

.detail-table-date {
    border-left: var(--border-width-sm, 1px) solid rgba(169, 171, 177, 0.40);
    padding-left: 12px;
}

.detail-table-description {
    border-left: var(--border-width-sm, 1px) solid rgba(169, 171, 177, 0.40);
    padding-left: 12px;
}

.detail-table-link {
    text-decoration: underline !important;
}

.gap-48 {
    gap: 48px;
}

.payment-history-div {
    padding: 24px;
}

.select-div {
    width: fit-content;
    padding: 0px;
    padding-left: 12px;
}

.select-div select {
    border: none;
}

.select-div span {
    width: 100%;
}

/* search bar=========================================== */


.search-bar {
    height: 48px;
    background-color: #FAFAFA;
    padding: 8px 16px;
    width: 100%;
}

.search-bar .darksoul-search-bar-input {
    border: none;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    background-color: transparent;
    color: var(--black);
    width: 100%;
}

.darksoul-search-bar .darksoul-search-bar-input::placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--light-gray);
}

/* ======================================================== */

thead tr {
    border-bottom: 1px solid rgba(169, 171, 177, 0.40);
}

thead tr td {
    padding: 12px 0px;
}

tbody tr td {
    padding: 20px 0px 4px 0px;
}

.payment-history-div select {
    width: fit-content;
}

.view-btn {
    text-decoration: underline !important;
}

/* modal================================================== */

.notification-modal .modal-dialog {
    width: fit-content;
    margin: 110px 90px 0px 0px;
}

.edit-modal .modal-dialog {
    margin: 200px 12px;
}

.notification-modal .modal-content {
    border-radius: 12px;
    padding: 32px;
    border: none;
    width: fit-content;
}

.notification-modal .modal-body {
    padding: 0;
    width: fit-content;
}

.notification-modal .modal-body p {
    width: max-content;
}

.notification-modal .modal-header {
    padding: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-primary-2, #DDDDE0);
    margin-bottom: 24px;
}

.notification-modal .modal-footer {
    display: none;
}

.icon-outer {
    height: 36px;
    width: 36px;
    border-radius: 100%;
    padding: 10px;
}

.successful-icon-outer {
    background-color: rgba(13, 165, 0, 0.2);
}

.warning-icon-outer {
    background-color: rgba(255, 166, 58, 0.2);
}

.fail-icon-outer {
    background-color: rgba(255, 0, 0, 0.2);
}

.rotate-icon-outer {
    background-color: rgba(0, 10, 255, 0.10);
}

/* =========================================================== */

.font-12-20-400 {
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
}

.gap-4 {
    gap: 4px !important;
}

.font-color-success {
    color: var(--success-color);
}

.font-color-error {
    color: var(--error-color);
}

.font-fam-lato {
    font-family: "Lato", sans-serif;
}

.alert-div {
    padding: 16px;
    text-align: center;
    background-color: rgba(255, 166, 58, 0.1);
}

.alert-div span {
    color: var(--warning-color);
}

.disk {
    height: 8px;
    width: 8px;
    border-radius: 100%;
}

.disk-yellow {
    background-color: var(--warning-color);
}

.disk-green {
    background-color: var(--success-color);
}

.disk-red {
    background-color: var(--error-color);
}

.w-160 {
    min-width: 160px;
}

.instruction-div-inner {
    padding: 24px;
    border-radius: 4px;
    background: #FAFAFA;
}

.service-div {
    padding: 24px;
    border-radius: 4px;
    background-color: #F7F7F7;
}

.service-div:hover {
    background-color: #E6ECF2;
}

.gap-10 {
    gap: 10px;
}

.m-b-24 {
    margin-bottom: 24px;
}

.accordian-content {
    display: none;
}

.accordian-item {
    background-color: #F7F7F7;
    padding: 16px 24px 16px 12px;
    border-radius: 4px;
}

.accordian-content {
    padding: 10px 24px 0px 24px;
}

.accordian-item.open {
    background-color: #E6ECF2;
}

.accordian-item .arrow {
    transform: translateX(0px);
    transition: transform 0.5s ease;
}

.accordian-item.open .arrow {
    transform: translateX(10px);
}

.link {
    cursor: pointer;
}

.accordian-item p img {
    margin: 0px 8px;
}

.inquiry-form {
    padding: 24px;
    border-radius: 4px;
    background-color: #F7F7F7;
    margin-top: 0px;
}

.d-flex-fields .field,
.d-flex-fields .field select {
    width: 100%;
}

.inquiry-form button {
    margin-top: 24px;
    width: fit-content;
}

.help-div {
    padding: 24px;
    border-radius: 4px;
    background-color: #EEE;
}

.font-color-656973 {
    color: #656973;
}

.faq-section {
    padding: 24px;
}

.open .accordian-content {
    display: block;
}

.pagination .page-link {
    height: 36px;
    width: 36px;
    padding: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-link:focus {
    outline: none;
    box-shadow: none;
    background-color: transparent;
}

.pagination .page-link:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.page-item.active .page-link {
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    background-color: transparent;
    color: var(--primary-color);
}

.font-14-24-600 {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
}

/* change opacity of pagination arrrows========================= */

.page-item .page-link svg.inactive path {
    stroke-opacity: 0.2;
}

.page-item .page-link svg.active path {
    stroke-opacity: 1;
}

.profile-div {
    box-shadow: 0px 20px 24px -4px rgba(0, 0, 0, 0.08), 0px 8px 8px -4px rgba(0, 0, 0, 0.03);
}

.active-label {
    padding: 8px 16px;
    border-radius: 60px;
    border: 2px solid var(--success-color);
    background: rgba(13, 165, 0, 0.10);
    width: fit-content;
    height: fit-content;
}

.active-label img {
    height: 20px;
    width: 20px;
}

.deactive-label {
    padding: 8px 16px;
    border-radius: 60px;
    border: 2px solid var(--error-color);
    background: #fff;
    width: fit-content;
    height: fit-content;
}

.deactive-label img {
    height: 20px;
    width: 20px;
}

.edit-btn {
    border: 1px solid #DDDDE0;
    padding: 12px 24px;
    border-radius: 4px;
}

.edit-btn svg {
    margin: 0px;
}

.certificate-info-label {
    min-width: 182px;
}

.profile-accordion .accordion-header {
    padding: 0px;
    cursor: pointer;
    border-bottom: none;
}

.profile-accordion .accordion-content {
    margin-top: 48px;
}

.recent-activity-div {
    border-radius: 4px;
    background-color: #F7F7F7;
    padding: 16px 24px 16px 16px;
}

.profile-accordion .view-btn {
    margin-top: 8px;
}

.profile-form,
.otp-form {
    margin-top: 0px;
    width: 100%;
}

.forgot-pw-left {
    height: fit-content !important;
}

.pw-reset-success {
    width: 80px;
    height: 80px;
    padding: 22px;
    margin-bottom: 24px;
}

.pw-reset-success img {
    width: 100%;
}

.pw-reset-success-div {
    text-align: center;
}

.pw-reset-success-div button {
    width: fit-content;
    margin-top: 30px;
}

.btn-outer {
    width: 100%;
}

.resend-otp-btn {
    background-color: #C5C7CA;
    border: 1px solid #82858D !important;
    color: var(--dark-black) !important;
}

.resend-otp-btn:hover {
    background-color: #C5C7CA;
}

/* otp input=========================================== */

.otp-input {
    display: flex;
    justify-content: center;
    margin: 8px 0px;
}

.otp-input input {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #E4E4E7;
    background-color: rgba(42, 42, 42, 0.8);
    color: var(--black);
    transition: all 0.3s ease;
    background-color: transparent;
}

.otp-input input:focus {
    border-color: var(--light-gray);
    outline: none;
}

.otp-input input::-webkit-outer-spin-button,
.otp-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.otp-input input[type=number] {
    -moz-appearance: textfield;
}

/* ==================================================== */

.left-top-bottom-radius {
    border-radius: 6px 0px 0px 6px;
}

.right-top-bottom-radius {
    border-radius: 0px 6px 6px 0px;
}

.otp-input svg {
    margin: 0px 8px;
    height: auto;
}

.mid-otp-input {
    border-left: 0px !important;
    border-right: 0px !important;
}

.otp-form button {
    min-width: 160px;
}

/* change profile picture=========================== */
.profile-pic-form {
    margin-top: 0px;
    /* position: relative; */
}

.profile-pic {
    border-radius: 100%;
    height: 108px;
    width: 108px;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    vertical-align: middle;
    text-align: center;
    color: transparent;
    transition: all .3s ease;
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.profile-pic-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
    border-radius: 100%;
}

.profile-pic span {
    display: inline-block;
    padding-top: 4.5em;
    padding-bottom: 4.5em;
}

form input[type="file"] {
    display: none;
    cursor: pointer;
}

.notification-btn {
    border: none;
    background-color: transparent;
    width: fit-content;
    height: fit-content;
    padding: 0px;
}

body.modal-open {
    padding-right: 0 !important;
    overflow: auto !important;
}

.user-detail-div img {
    width: 20px;
    height: 20px;
}

.modal-body form {
    margin-top: 0;
}

.info-label {
    min-width: 108px;
}

.info-label-right {
    min-width: 58px;
}

.login-img-div-mobile {
    margin-top: 0px;
    margin-bottom: 48px;
}

.login-img-div-mobile img {
    width: 200px;
}

.login-page-img-div {
    display: none;
}

.login-div-outer {
    height: -webkit-fill-available;
}

.wizard-steps .font-16-24-400 {
    font-size: 12px;
    line-height: 20px;
}

.otp-btn-div {
    width: 100%;
}

.otp-btn-div button {
    width: 100%;
}

/* .renewal-right-div-top{
    display: none;
} */

.dashboard-div .font-32-38-600 {
    font-size: 18px;
}

.table-container {
    overflow-x: scroll;
    width: 100%;
}

.table-container table {
    min-width: 910px;
}

.last-month-search-div-outer select,
.last-month-search-div-outer span {
    font-size: 13px;
}

.search-bar {
    margin: 20px 0px;
}

.renew-certificate-div .btn-bg {
    margin-top: 20px;
    width: fit-content;
}

.general-info-search-div-outer nav {
    margin: 40px 0px 20px 0px;
}

.application-submission-date-field {
    margin-bottom: 20px;
}

.no-of-days-div {
    margin-top: 20px;
}

span.font-16-24-600 {
    font-size: 13px;
}

.pending-renewal-div img {
    width: 20px;
}

.recent-activity-div h3 {
    margin: 10px 0px;
}

#message_form {
    width: 100%;
    margin-top: 0;
}

.accordion-header {
    flex-direction: column;
}

input,
select {
    font-size: 14px;
}

.step-label,
.step p {
    font-size: 12px !important;
}

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

.instruction-ul {
    margin-left: 12px;
    padding-left: 12px !important;
}

.instruction-ul li {
    list-style-type: disc;
    margin-bottom: 8px;
}

.underline-text {
    text-decoration: underline;
    margin-top: 20px;
}

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

ol.instruction-ul li {
    list-style-type: decimal;
}

.slmc-text {
    margin-top: 5px;
}

.renew-before-div a {
    width: fit-content;
    margin-top: 30px;
}

.personal-info-div button {
    margin-top: 20px;
}

.profile-pic-form {
    margin-bottom: 10px;
}

.active-label {
    margin-top: 20px;
}

.personal-info-detail h6 {
    margin: 10px 0px 20px 30px;
}

/* tabs============================== */
.tabs {
    border: 1px solid rgba(169, 171, 177, 0.40);
    padding: 24px;
    border-radius: 4px;
}

.tabs input[type="radio"] {
    display: none;
}

.tabs label {
    display: inline-block;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    padding: 10px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-right: 10px;
}

.tabs input[type="radio"]:checked+label {
    background-color: var(--primary-color);
    color: var(--white);
}

.card-9-content {
    display: none;
    border: none;
}

#tab1:checked~#content1,
#tab2:checked~#content2,
#tab3:checked~#content3,
#tab4:checked~#content4,
#tab5:checked~#content5,
#tab6:checked~#content6 {
    display: block;
    width: 100%;
}

/* ================================ */

.dashboard-nav-item {
    display: flex;
    align-items: center;
}

.dashboard-nav-item svg {
    width: 15px;
    height: 15px;
}

.dashboard-nav-item a {
    line-height: 16px;
}

.side-bar .menu,
.side-bar-container {
    height: calc(100vh - 70px) !important;
}

.side-bar-setting{
    margin-bottom: 30px;
}

.side-bar-login-div{
    margin-top: 50px;
}
.payment-successful-div h1{
    text-align: center;
}
.payment-history-div .logo{
    margin-bottom: 20px;
}

.payment-history-div .form-check{
    margin-top: 20px
}

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

.instruction-div-public span{
    font-weight: 600 !important;
}
.warning-text{
    color: var(--warning-color);
}
.upper-case{
    text-transform: uppercase;
}

.error-bg {
    padding: 48px;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 100%;
    height: 192px;
    width: 192px;
}

select[readonly] {
    pointer-events: none; /* Disable interaction */
}

.date-input[readonly] {
    pointer-events: none; /* Prevents mouse interaction */
}

.mt-30{
    margin-top: 30px;
}

.pd-15{
    padding: 15px;
}

.qr-img-border{
    border: 1px solid #F1EBD8;
}

.qr-img-border img{
    padding: 20px 20px 10px 20px;
}


.bg-light{
    background-color: #F8F9FE;
}

.bg-blue{
    background-color: var(--primary-color);
    border-color:  var(--primary-color);
    color: #fff !important;
}

.floating-whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    font-size: 40px;
    width: 54px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.chat-btn {
    position: fixed; /* Ensures it stays at the bottom right */
    right: 20px;
    bottom: 80px;
    cursor: pointer;
    width: 54px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--primary-color);;
    color: #fff;
    font-size: 30px;
    border: none;
    z-index: 1000; /* Ensures it stays above other elements */
}

.chat-btn .close {
    display: none;
}

.chat-btn i {
    transition: all 0.3s ease;
}

#check:checked ~ .chat-btn .comment {
    display: none;
}

#check:checked ~ .chat-btn .close {
    display: block;
}

/* Chat Box (Initially Hidden, Appears on Click) */
.wrapper {
    position: fixed; /* Keeps chat box fixed */
    right: 20px;
    bottom: 80px; /* Adjusted to open above the button */
    width: 320px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

#check:checked ~ .wrapper {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.header-chat {
    padding: 13px;
    background-color: var(--primary-color);;
    border-radius: 5px 5px 0px 0px;
    margin-bottom: 10px;
    color: #fff;
    text-align: center;
}

.chat-form {
    padding: 15px;
}

.chat-form input,
.chat-form textarea,
.chat-form button {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.chat-form textarea {
    resize: none;
    height: 80px;
}

.form-control:focus,
.btn:focus {
    box-shadow: none;
    outline: none;
}

.btn {
    background-color: var(--primary-color);;
    border: var(--primary-color);;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

#check {
    display: none;
}