/*
--------------------------------------------------------------------------------------------------------
* Project    :                                                                                         *
* Author     : piyush Tapaniya | +91 83060 05795                                                       * 
* Support    : piyush.tapaniya90@gmail.com                                                             * 
*------------------------------------------------------------------------------------------------------- 
NOTE: This is main stylesheet of template, This file contains the styling for the actual Template.
*/

/*================================================
[  Table of contents  ]
================================================== 
:: general css Style
   :: google font
   :: basic style     
   :: headings
   :: button style
   :: helper classes 
   :: section title
   :: box border
   :: custome class 
:: scrollbar CSS
:: back to top CSS
:: loader CSS
:: animations 
==================================================
[ End table content ]
================================================*/

@charset "UTF-8";
/*================================================
    :: general css Style
==================================================*/

/* :: google font */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary-color: #00578c;
    --secondary-color: #EFF8FD;
    --white-color: #FFFFFF;
    --black-color: #000000;
    --body-color: #F2F2F7;
    --body-color-inside: #EFF8FD;
    --body-font: "Inter", sans-serif;
    --title-font: "Inter", sans-serif;
    --text-color: #2D3748;
    --bg-danger: red;
}

.custom-tooltip {
    --bs-tooltip-bg: var(--primary-color);
}


/* :: basic style  */
*, *::before, *::after {
    box-sizing: border-box;
}


html {
    height: 100%;
    width: 100%;
    display: block;
}

    html body {
        height: 100%;
        background-color: var(--body-color-inside);
    }

        html body.fixed-navbar {
            padding-top: 5rem;
        }

body {
    font-family: var(--body-font);
    background-color: var(--body-color-inside);
    color: var(--black-color);
}

p {
    color: var(--black-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
a {
    margin-top: 0;
    margin-bottom: 0;
    -webkit-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s;
}

img {
    max-width: 100%;
    height: auto;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

a,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
    text-decoration: none;
    color: inherit;
}


ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    outline: none;
    border: 0;
    cursor: pointer;
    background: transparent;
}

    button:focus {
        outline: none;
        outline: 0;
    }

iframe {
    width: 100%;
    border: 0px;
}


.owl-carousel .owl-item img {
    width: auto;
}

/* :: Form */
textarea {
    resize: none;
}

/* select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
} */

input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white-color);
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: var(--white-color);
    text-shadow: none;
}

.form-check-input {
    background-color: transparent;
    border: 1px solid #D1D1D1;
}

    .form-check-input:checked {
        background-color: #FFB82F;
        border-color: #FFB82F;
    }

    .form-check-input:focus {
        border-color: #FFB82F;
        box-shadow: 0 0 0 .25rem rgb(255 184 47 / 32%);
    }

/* :: headings */

/* :: Font h1 */
h1 {
    font-size: 62px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h1 {
        font-size: 52px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h1 {
        font-size: 42px;
    }
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 42px;
    }
}

/* :: Font h2 */
h2 {
    font-size: 24px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h2 {
        font-size: 42px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h2 {
        font-size: 32px;
    }
}

@media only screen and (max-width: 767px) {
    h2 {
        font-size: 32px;
    }
}

/* :: Font h3 */
h3 {
    font-size: 32px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h3 {
        font-size: 28px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h3 {
        font-size: 26;
    }
}

@media only screen and (max-width: 767px) {
    h3 {
        font-size: 26;
    }
}

/* :: Font h4 */
h4 {
    font-size: 28px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    h4 {
        font-size: 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h4 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    h4 {
        font-size: 24px;
    }
}

/* :: Font h5 */
h5 {
    font-size: 22px;
}

@media only screen and (max-width: 767px) {
    h5 {
        font-size: 22px;
    }
}

/* :: Font h6 */
h6 {
    font-size: 18px;
}

@media only screen and (max-width: 767px) {
    h6 {
        font-size: 18px;
    }
}

.owl-dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
}

    .owl-dots button {
        height: 12px;
        width: 12px;
        background: #dcdcdc !important;
        display: inline-block;
        margin: 0 4px;
        border-radius: 15px;
    }

        .owl-dots button.active {
            background: var(--primary-color) !important;
        }


/* :: button style */
.button-style-cancel {
    display: inline-block;
    padding: 8px 25px;
    border-radius: 8px;
    border: 1px solid var(--bg-danger);
    background: var(--bg-danger);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.button-style {
    display: inline-block;
    padding: 8px 25px;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    overflow: hidden;
}

    .button-style:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: var(--black-color);
    }

        .button-style:hover:before {
            transform: scaleX(1);
            -webkit-transform: scaleX(1);
            -moz-transform: scaleX(1);
            -ms-transform: scaleX(1);
            -o-transform: scaleX(1);
        }


.button-info {
    display: inline-block;
    vertical-align: top;
    padding: 8px 30px;
    border-radius: 30px;
    border: 1px solid var(--primary-color);
    color: var(--black-color);
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    z-index: 5;
    overflow: hidden;
}

    .button-info:hover {
        background: #aaa046;
        color: var(--black-color);
        border-color: transparent;
    }

/* :: helper */

.text-secondary {
    color: #FFB82F !important;
}

.text-white {
    color: var(--white-color) !important;
}

.text-black {
    color: var(--black-color) !important;
}

.text-color,
.text-primary {
    color: var(--primary-color) !important;
}

.text-green {
    color: green;
}

.text-red {
    color: red;
}

.bg-white {
    background-color: var(--white-color) !important;
}

.bg-secondary {
    background: #FFB82F !important;
}

.bg-color {
    background-color: var(--primary-color) !important;
}

.bg-black {
    background-color: var(--black-color) !important;
}

.bg-white {
    background-color: var(--white-color) !important;
}

.grid-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5rem;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1.5rem;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 1.5rem;
}

/* :: form */
.form-control {
    height: 40px;
}

    .form-control:focus {
        background-color: transparent;
    }

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select {
    position: relative;
    display: block;
    width: 100%;
    line-height: 28px;
    padding: 10px 25px;
    border-radius: 0px;
    background: transparent;
    border: 1px solid #d3d3d3;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 15px 25px 25px;
    color: var(--black-color);
    height: 135px !important;
    background: transparent;
    color: var(--text-color);
    resize: none;
    border-radius: 0px;
    border: 1px solid #d3d3d3;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

label.error {
    display: block;
    padding: 5px 0px 0px;
    margin: 0px;
    text-transform: capitalize;
    font-size: 14px;
    color: #ff0000;
    font-weight: 500;
}

input.error,
select.error,
textarea.error {
    border-color: #ff0000 !important;
}



/* input effect */
.input-container {
    position: relative;
    border: 1px solid #CDD7E0;
    border-radius: 5px !important;
}

.input-error {
    border: 1px solid red;
}

.input {
    box-sizing: border-box;
    color: var(--black-color);
    font-size: 15px;
    height: 50px !important;
    outline: 0;
    padding: 12px 17px 12px 17px;
    width: 100%;
    border: none !important;
    border-radius: 5px !important;
    background: transparent;
    font-weight: 500;
}

textarea.input {
    height: 100px !important;
}

.input-error-text {
    color: red;
    font-size: 12px;
    position: absolute;
    left: 0;
    bottom: -18px;
}

.placeholder {
    color: #92929D;
    left: 20px;
    line-height: 14px;
    pointer-events: none;
    position: absolute;
    transform-origin: 0 50%;
    transition: transform 200ms, color 200ms;
    top: 18px;
    margin: 0;
    background-color: var(--white-color);
    opacity: 1;
    font-size: 15px;
    font-weight: 500;
}

.input:focus ~ .placeholder,
.input:not(:placeholder-shown) ~ .placeholder {
    transform: translateY(-26px) translateX(-20px) scale(0.75);
    padding: 0 10px;
    left: 30px;
    background: var(--white-color);
    color: #92929D;
    font-size: 18px;
}


/*radio button stype*/
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

    [type="radio"]:checked + label,
    [type="radio"]:not(:checked) + label {
        position: relative;
        padding-left: 25px;
        cursor: pointer;
        display: inline-block;
    }

        [type="radio"]:checked + label:before,
        [type="radio"]:not(:checked) + label:before {
            content: '';
            position: absolute;
            left: 1px;
            top: 4px;
            width: 18px;
            height: 18px;
            border: 1px solid #c1c1c1;
            border-radius: 100%;
            background: var(--white-color);
        }

        [type="radio"]:checked + label:after,
        [type="radio"]:not(:checked) + label:after {
            content: '';
            width: 12px;
            height: 12px;
            background: #0a58ca;
            position: absolute;
            top: 7px;
            left: 4px;
            border-radius: 100%;
            -webkit-transition: all 0.2s ease;
            transition: all 0.2s ease;
        }

        [type="radio"]:not(:checked) + label:after {
            opacity: 0;
            -webkit-transform: scale(0);
            transform: scale(0);
        }

        [type="radio"]:checked + label:after {
            opacity: 1;
            -webkit-transform: scale(1);
            transform: scale(1);
        }


.dropdown .dropdown-menu {
    padding: 15px 0;
}

.dropdown-menu.show {
    display: block;
    background: var(--white-color);
    box-shadow: 0px 0px 22px -4px rgba(11, 26, 56, .1);
    border: none;
    border-radius: 20px;
}

/*================================================
:: back to top CSS
==================================================*/
.scrollToTop {
    position: fixed;
    bottom: 0;
    right: 30px;
    padding: 10px 6px;
    background: var(--primary-color);
    font-weight: 600;
    color: var(--white-color);
    font-size: 12px;
    text-align: center;
    border-radius: 25px;
    z-index: 99;
    cursor: pointer;
    transition: all 1s;
    transform: translateY(100%);
}

    .scrollToTop i {
        -webkit-animation: scroll-down 2s infinite;
        -moz-animation: scroll-down 2s infinite;
        -o-animation: scroll-down 2s infinite;
        animation: scroll-down 2s infinite;
        font-size: 15px;
        margin-bottom: 10px;
    }

    .scrollToTop span {
        display: block;
        color: var(--white-color);
    }

    .scrollToTop.active {
        bottom: 30px;
        transform: translateY(0%);
    }

    .scrollToTop:hover,
    .scrollToTop:focus {
        color: var(--white-color);
    }

/*================================================
:: loader CSS
==================================================*/
.loader-box {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background: var(--primary-color);
    z-index: 99999;
}

.loader-round {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 7px solid var(--secondary-color);
    border-top: 7px solid var(--black-color);
    animation: rotate 2s infinite ease;
}

.header-navbar {
    transition: 300ms ease all;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background: var(--body-color);
    height: 5rem;
}

html body .content.app-content {
    overflow-x: hidden;
}

html body .content {
    padding: 0;
    position: relative;
    transition: 300ms ease all;
    backface-visibility: hidden;
    min-height: calc(100% - 204px);
}

.content {
    overflow: visible;
    position: relative;
    width: auto;
    margin-left: 0;
    min-height: auto;
    padding: inherit;
}

.navbar-shadow {
    box-shadow: 0px 2px 30px 2px rgba(0, 0, 0, 0.1);
}

html body .content .content-wrapper {
    padding: 30px 30px;
}

.navbar-header {
    height: 100%;
    height: 5.2rem;
    float: left;
    position: relative;
    padding: 0 0.85rem;
    transition: 300ms ease all;
    display: flex;
    align-items: center;
}


.header-navbar .navbar-container {
    padding: 0 30px;
    height: 5rem;
    transition: 300ms ease all;
    background: inherit;
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*float: right;*/
}

.dropdown.notification button {
    background-color: var(--primary-color);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 15px;
    display: flex;
    gap: 5px;
    border: none;
}

.dropdown.notification .dropdown-toggle::after {
    display: none;
}

.dropdown.notification .dropdown-menu.show {
    width: 230px;
    padding: 15px;
}

    .dropdown.notification .dropdown-menu.show li {
        padding: 5px;
        margin-bottom: 2px;
    }

        .dropdown.notification .dropdown-menu.show li p {
            font-size: 14px;
        }


.header-menu ul {
    display: flex;
    gap: 30px;
}

    .header-menu ul li a:hover,
    .header-menu ul li a.active {
        color: var(--primary-color);
    }

body.menu-open .header-menu {
    transform: translate(0, 0);
    width: 260px;
}

/*================================================
:: footer
==================================================*/
footer.footer {
    padding: 20px 20px;
}

.footer-content {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-link {
    max-width: 300px;
}

.footer-link-top a {
    font-size: 14px;
}

.footer-link-top {
    margin-bottom: 10px;
}

.footer-link-bottom p {
    font-size: 14px;
}



/*================================================
:: page contetn start
==================================================*/
.content-title-box {
    padding-bottom: 10px;
    border-bottom: 1px solid #C8C8C8;
    margin-bottom: 10px;
}

    .content-title-box .content-title, h2.content-title {
        font-size: 24px;
        font-weight: bold;
        color: var(--text-color);
    }

.content-subtitle-box .content-subtitle {
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 10px;
    color: var(--text-color);
    font-weight: 600;
}

.custome-form .form-group {
    margin-bottom: 15px;
}

.custome-form .field-inner {
    position: relative;
}

    .custome-form .field-inner label {
        color: var(--text-color);
        font-size: 13px;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .custome-form .field-inner input,
    .custome-form .field-inner select,
    .custome-form .field-inner textarea {
        color: var(--text-color);
        border-color: #E2E8F0;
        border-radius: 13px;
        background: var(--white-color);
        padding: 10px 15px;
        appearance: auto;
        height: 40px;
    }

.custome-form .with-icon .field-inner .edit-icon {
    position: absolute;
    top: 27px;
    right: 0;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custome-form .field-inner input[disabled] {
    cursor: no-drop;
}

.with-error .field-inner input,
.with-error .field-inner select,
.with-error .field-inner textarea {
    border-color: red;
}

.with-error span.error-text {
    display: block !important;
    font-size: 13px;
    color: red;
    position: absolute;
    left: 0;
    bottom: -20px;
}

select.select-drop {
    position: absolute;
    z-index: 1;
    width: 72px;
    border: none;
    height: 50px;
    padding: 10px 5px !important;
}

.contact-name input {
    padding-left: 90px !important;
}


.privacy-policy-box,
.faq-box {
    background-color: var(--white-color);
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0px 4px 24px 0px #0000000D;
}

    .privacy-policy-box p {
        font-size: 15px;
    }

.help-box {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.help-item {
    width: calc(33.33% - 20px);
    background-color: var(--white-color);
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0px 4px 24px 0px #0000000D;
}

.help-icon {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.help-content a,
.help-content p {
    color: #2D3748;
}

.accordion-item {
    background-color: var(--white-color);
    border: none;
    margin-bottom: 10px;
    box-shadow: 0px 8px 34px 0px #F7791E1F;
    border-radius: 15px !important;
    overflow: hidden;
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--text-color);
    background-color: transparent;
    box-shadow: none;
}

.accordion-button {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
}

.accordion-body {
    padding: 0 1rem 1.25rem;
}

    .accordion-body p {
        font-size: 14px;
    }


.alert {
    position: relative;
    z-index: 999;
    padding: 15px;
    border-radius: 15px;
}

    .alert p {
        font-size: 13px;
    }

.alert-danger {
    border-color: transparent;
}

.alert-dismissible .btn-close {
    padding: 5px;
    background-size: 10px;
}


.table-filter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.table-filter-left {
    /*max-width: 282px;*/
    width: 100%;
}

.table-filter-search {
    position: relative;
}

    .table-filter-search input {
        color: var(--text-color);
        border-radius: 15px;
        background: var(--white-color);
        padding: 10px 15px;
        appearance: auto;
        height: 50px;
        border: 1px solid #d3d3d3;
        display: block;
        width: 100%;
        font-size: 14px;
    }

    .table-filter-search a {
        position: absolute;
        top: 0;
        right: 0;
        height: 50px;
        width: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.table-filter-data {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.table-filter-item .dropdown button {
    color: var(--text-color);
    border-radius: 15px;
    background: var(--white-color);
    padding: 10px 15px;
    appearance: auto;
    height: 50px;
    border: 1px solid #d3d3d3;
    width: 185px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.table-filter-item .dropdown-toggle::after {
    display: none;
}

.table-filter-item .dropdown .dropdown-menu {
    padding: 15px;
    width: 185px;
}

.table-filter-company .dropdown .dropdown-menu li {
    border-bottom: 0.5px solid #E2E8F0;
}

.table-filter-item .dropdown .dropdown-menu li a {
    font-size: 14px;
    color: #8B8B8B;
}

.table-filter-company .dropdown .dropdown-menu li a label input {
    margin-right: 5px;
}

.table-filter-status .dropdown .dropdown-menu li a {
    display: flex;
    gap: 5px;
    align-items: center;
}

    .table-filter-status .dropdown .dropdown-menu li a span {
        height: 10px;
        width: 10px;
    }

.table-filter-date {
    position: relative;
}

    .table-filter-date input {
        color: var(--text-color);
        border-radius: 15px;
        background: var(--white-color);
        padding: 10px 15px;
        appearance: auto;
        height: 50px;
        border: 1px solid #d3d3d3;
        width: 230px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 14px;
    }

    .table-filter-date a {
        position: absolute;
        top: 0;
        right: 0;
        height: 50px;
        width: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }


.data-box {
    display: flex;
    gap: 10px;
}

.data-box-left {
    width: calc(100% - 470px);
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 24px 0px #0000000D;
}

.data-box-right {
    width: 460px;
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 24px 0px #0000000D;
    position: relative;
}

    .data-box-right span {
        font-size: 10px;
        color: #8B8B8B;
    }

    .data-box-right h3 {
        font-size: 15px;
        font-weight: 600;
        color: #333333;
    }

.details-inq-list {
    display: flex;
    gap: 5px;
    align-items: flex-start;
    border-bottom: 1px solid var(--black-color);
    padding: 5px 0;
}

    .details-inq-list > div {
        width: 32%;
    }

.details-info {
    margin-bottom: 20px;
}

.details-info {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
}

.details-info-item {
    width: calc(60% - 20px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.details-inq-item {
    display: flex;
    border-top: 1px solid var(--black-color);
    flex-direction: column;
    margin-top: 30px;
}

.details-select-box {
    width: 40%;
}

select.details-select {
    width: 100%;
    color: var(--text-color);
    border-radius: 15px;
    background: var(--white-color);
    padding: 10px 15px;
    appearance: auto;
    height: 50px;
    border: 1px solid #d3d3d3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.details-pogressbar-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pogressbar-circle {
    height: 15px;
    width: 15px;
    display: block;
    border-radius: 100px;
}

.details-pogressbar-bar > div {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 16.66%;
    gap: 0;
    position: relative;
    z-index: 1;
}
/* .details-pogressbar-bar .pogressbar-bar-1 {
    text-align: left;
    align-items: flex-start;
}
.details-pogressbar-bar .pogressbar-bar-6 {
    text-align: end;
    align-items: end;
} */
.circle-1 {
    background-color: #00BFFF;
}

.circle-2 {
    background-color: #1E90FF;
}

.circle-3 {
    background-color: #9370DB;
}

.circle-4 {
    background-color: #FFB82F;
}

.circle-5 {
    background-color: #FFA000;
}

.circle-6 {
    background-color: #009688;
}

.circle-7 {
    background-color: #FF7043;
}

.circle-8 {
    background-color: #4CAF50;
}

.circle-9 {
    background-color: #9E9E9E;
}

span.pogressbar-name {
    height: 32px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 10px;
}

.details-pogressbar-bar > div:after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    left: 20px;
    bottom: 7px;
    margin: auto;
    z-index: -1;
}


.details-pogressbar-bar > .pogressbar-bar-1:after {
    background-color: #00BFFF;
}

.details-pogressbar-bar > .pogressbar-bar-2:after {
    background-color: #1E90FF;
}

.details-pogressbar-bar > .pogressbar-bar-3:after {
    background-color: #9370DB;
}

.details-pogressbar-bar > .pogressbar-bar-4:after {
    background-color: #FFB82F;
}

.details-pogressbar-bar > .pogressbar-bar-5:after {
    background-color: #FFA000;
}

.details-pogressbar-bar > .pogressbar-bar-6:after {
    background-color: #009688;
}

.details-pogressbar-bar > .pogressbar-bar-7:after {
    background-color: #FF7043;
}

.details-pogressbar-bar > .pogressbar-bar-8:after {
    background-color: #4CAF50;
}

.details-pogressbar-bar > .pogressbar-bar-9:after {
    display: none;
}


.details-cont {
    margin-top: 30px;
}

    .details-cont p {
        color: #8B8B8B;
        font-size: 14px;
    }

.details-note {
    margin-top: 30px;
}

    .details-note h6 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 10px;
        color: var(--text-color);
    }

    .details-note p {
        border: 1px solid #E2E8F0;
        padding: 15px;
        color: #8B8B8B;
        font-size: 14px;
        border-radius: 15px;
    }

.card-close {
    position: absolute;
    right: 2px;
    top: 2px;
}

.table > thead {
    background: #E2E8F0;
    text-transform: uppercase;
}

tbody, td, tfoot, th, thead, tr {
    font-size: 12px;
    color: #2D3748;
}

.table > :not(:first-child) {
    border-top: none;
}

table thead tr th:nth-last-child(1) {
    width: 60px;
}

table tbody tr td a {
    /*height: 20px;*/
    display: block;
}

.table tbody tr td span {
    /*border-bottom: 2px solid;*/
    padding-bottom: 2px;
}

.table tbody tr td .status-nc {
    border-color: #00BFFF;
}

.table tbody tr td .status-ic {
    border-color: #1E90FF;
}

.table tbody tr td .status-ex {
    border-color: #9370DB;
}

.table tbody tr td .status-svp {
    border-color: #FFC107;
}

.table tbody tr td .status-svd {
    border-color: #FFA000;
}

.table tbody tr td .status-fup {
    border-color: #FF7043;
}

.table tbody tr td .status-om {
    border-color: #009688;
}

.table tbody tr td .status-dc {
    border-color: #4CAF50;
}

.table tbody tr td .status-ni {
    border-color: #9E9E9E;
}

.addDetails-text p {
    font-size: 14px;
    color: var(--primary-color);
}

.addDetails-text h2 {
    font-size: 42px;
    color: var(--primary-color);
    font-weight: 600;
}

.addDetails-text {
    background: url(../../assets/images/popup/image-1.png) no-repeat;
    padding: 100px 0 100px 220px;
    background-size: 280px;
}

.addDetails-content button.btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
}

#addDetails .modal-body {
    padding: 0;
}

.dashoard-contact-list {
    background-color: var(--white-color);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0px 4px 24px 0px #0000000D;
}

.share-contact {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.share-contact-content {
    padding-left: 100px;
    position: relative;
    padding-top: 20px;
    padding-bottom: 15px;
}

    .share-contact-content img {
        position: absolute;
        left: 0;
        top: 0;
    }

    .share-contact-content h2 {
        font-size: 20px;
        font-weight: bold;
        color: #333333;
    }

    .share-contact-content p {
        font-size: 15px;
        color: #333333;
    }

.share-contact-buttton a.button-style:hover {
    background-color: #000;
    color: var(--white-color);
}

.dashoard-card {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px;
}

    .dashoard-card .dashoard-item {
        background-color: var(--white-color);
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0px 4px 24px 0px #0000000D;
    }

.dashoard-item-title h2 {
    font-size: 14px;
    font-weight: bold;
    color: #A0AEC0;
}

.dashoard-item-top {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dashoard-item-icon {
    height: 32px;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 4px 0px #00000017;
    border-radius: 8px;
}

.dashoard-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.dashoard-item-number {
    font-size: 52px;
    line-height: 52px;
    font-weight: bold;
}



.login-wapper:after {
    content: '';
    position: fixed;
    height: 100%;
    width: 50%;
    right: 0;
    top: 0;
    background-color: var(--secondary-color);
    z-index: -1;
}

section.login-area,
.login-wapper,
.login-content {
    height: 100%;
}

.login-title h1 {
    font-size: 52px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
}

.login-title p {
    font-size: 16px;
    color: var(--text-color);
}

.login-content {
    padding: 50px;
}

.login-form.custome-form {
    max-width: 420px;
}

.forgot-pass a,
.dont-have-text a {
    color: #00578c;
    font-size: 14px;
}

.dont-have-text p {
    color: #333333;
    font-size: 14px;
}

.login-image {
    position: fixed;
    left: 260px;
    right: 0;
    bottom: 0;
    margin: auto;
    max-width: 620px;
    width: 100%;
}

.login-title p {
    font-size: 14px;
}

.Register-checkbox label {
    color: #333333;
}


ul.register-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    ul.register-tags li p {
        padding-left: 30px;
        background-image: url(../../assets/images/icon/verify.svg);
        background-repeat: no-repeat;
    }



#profileUpdated .modal-content {
    background-color: #ffffffa6;
    backdrop-filter: blur(5.300000190734863px);
    border: none;
}

#profileUpdated .modal-body {
    padding: 30px;
}

.profileUpdated-text {
    text-align: center;
}

    .profileUpdated-text p {
        font-size: 22px;
    }

.profileUpdated-content button.btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
}


.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

    .footer p {
        color: #fff;
        padding: 8px 0;
    }

.login-right {
    width: 70%;
    margin: 10% auto;
}

.font-weight-600 {
    font-weight: 600;
}

.btn-lg {
    font-size: 15px !important;
}

.btn-default {
    background: var(--primary-color);
    color: #fff;
}

.navbar-left {
    margin-left: 50px;
}
