@font-face {
    font-family: "GraphikLight";
    src: url("../fonts/Poppins-Light.ttf");
}

@font-face {
    font-family: "GraphikRegular";
    src: url("../fonts/Poppins-Regular.ttf");
}

@font-face {
    font-family: "GraphikMedium";
    src: url("../fonts/Poppins-Medium.ttf");
}

@font-face {
    font-family: "GraphikSemibold";
    src: url("../fonts/Poppins-SemiBold.ttf");
}

@font-face {
    font-family: "GraphikBold";
    src: url("../fonts/GraphikBold.otf");
}

:root {
    --theme-font: "GraphikLight";
    --theme-font2: "GraphikRegular";
    --theme-font3: "GraphikMedium";
    --theme-font4: "GraphikSemibold";
    --theme-top-pad: "0px 50px";
    --theme-color: #021b3a;
    --theme-color2: #005cab;
    --gradient1: linear-gradient(0deg, #ff6f43 0%, #ffa443 100%);
    --gradient2: linear-gradient(0deg, #005bab 0%, #00adef 100%);
    --filter1: box-shadow: 0px 3px 7.5px rgba(0, 0, 0, 0.08);
    --filter2: drop-shadow(0px 3px 5px rgba(0, 21, 68, 0.12));
    --theme-color: #021b3a;
    --color1: #002d64;
    --color2: #afb2be;
    --color3: #f4f6f8;
}

.body-wrapper {
    background-color: var(--color3);
    padding-bottom: 50px;
}

/* Login page */
.login-content {
    max-width: 1920px;
    margin: 0 auto;
}

.login-sec {
    background-color: #431dc2;
    height: 100dvh;
    align-items: center;
    display: flex;
}

    .login-sec .login-form {
        padding: 80px;
        filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.3));
        width: 530px;
        /* height: 681px; */
        border-radius: 15px;
        filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.3));
        background-color: #ffffff;
    }

.small-text {
    font-size: 15px;
    color: #6f6f6f;
}

.login-head {
    font-size: 30px;
    line-height: 48px;
    color: #31333c;
    font-family: "GraphikSemibold";
    margin-bottom: 25px;
}

.login-form label {
    font-size: 13px;
    line-height: 57px;
    color: #727272;
    font-family: var(--theme-font2);
}

.login-form input:focus-visible {
    outline: none !important;
}

.login-form input {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 57px;
    color: #2d2d2d;
    font-family: var(--theme-font2);
    width: 100%;
    height: 62px;
    border-radius: 31px;
    background-color: #e8eef2;
    padding-left: 30px;
    border: 0px;
    padding: 35px 60px 25px 30px;
}

.login-btn {
    background-color: var(--color1);
    width: 100%;
    height: 53px;
    border-radius: 27px;
    background-color: #1877f2;
    border: 0px;
    font-size: 15px;
    line-height: 50px;
    color: #ffffff;
    font-family: var(--theme-font);
}

.login-form input[type="checkbox"] + label:before,
.login-content input[type="checkbox"]:checked + label:after {
    align-items: center;
    justify-content: center;
    top: 50% !important;
    transform: translateY(-50%);
}

.login-content .forget {
    margin-top: 30px;
    position: relative;
}

    .login-content .forget a {
        background-color: #fff;
        padding: 10px;
        font-size: 14px;
        color: #535353;
    }

        .login-content .forget a::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 1px;
            top: 10px;
            left: 0;
            background-color: #e8eef2;
            z-index: -1;
        }

.login-form .logo {
    margin-bottom: 40px;
}

.cus-group {
    position: relative;
}

    .cus-group label {
        position: absolute;
        left: 30px;
        top: -15px;
    }

    .cus-group img,
    .cus-group i {
        position: absolute;
        right: 25px;
        top: 23px;
        z-index: 2;
    }

    .cus-group i {
        font-size: 25px;
        color: #656565;
        top: 16px;
    }

.navbar-nav .dropdown-toggle::after {
    display: none;
}

.ul-3 {
    columns: 3;
}

.ul-2 {
    columns: 2;
}

.ul-4 {
    columns: 4;
}

.dropdown-menu.ul-3 {
    right: -100px;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--theme-font) !important;
    font-size: 13px;
    color: #242641;
    scroll-behavior: smooth;
    /* overflow-x: hidden; */
}

.header-sec .main-header {
    background-color: var(--theme-color);
}

.header-sec .top-header {
    padding-block: 8px;
}

.navbar-nav .nav-link {
    color: #fff;
}

.dropend .dropdown-toggle {
    color: salmon;
    margin-left: 1em;
}

.dropdown-item:hover {
    /* color: #fff; */
}

.dropdown .dropdown-menu {
    border-radius: 10px;
    filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.1));
    background-color: #ffffff;
    border: 0px !important;
    padding: 10px;
    display: block;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.2s linear;
}

.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
}

    .dropdown:hover .dropdown-menu a {
        color: #0d0d0d;
        font-size: 13px;
        text-transform: capitalize;
        font-family: var(--theme-font);
        border-radius: 4px;
        line-height: 24px;
    }

        .dropdown:hover .dropdown-menu a:hover {
            color: #fff !important;
            background-color: var(--theme-color2);
        }

.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
    display: block;
    /* margin-top: 0.125em;
  margin-left: 0.125em; */
}

@media screen and (min-width: 769px) {
    .dropend:hover > .dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
    }

    .dropend .dropdown-toggle {
        margin-left: 0.5em;
    }
}

.search-box {
    display: flex;
    align-items: center;
    position: relative;
}

    .search-box img {
        position: absolute;
        left: 15px;
    }

    .search-box input {
        width: 455px;
        padding-left: 45px;
        border: 0px;
        background-color: #e6eff8;
        border-radius: 22px;
        font-size: 13px;
        line-height: 31px;
        color: #3d4a5a;
        font-family: var(--theme-font);
    }

.red-t {
    color: #ff0000 !important;
}

.font13 {
    font-size: 13px;
}

.lead-dts {
    line-height: 20px;
}

.font14 {
    font-size: 14px;
}

label.red-t {
    font-family: var(--theme-font2)
}

/* top header */
.cus-table-body {
    height: 400px;
    overflow-y: auto;
}

    .cus-table-body thead {
        position: sticky;
        top: 0;
        background-color: var(--theme-color);
        z-index: 1;
    }

.profie-log-sec {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .profie-log-sec h4 {
        font-size: 15px;
        line-height: 20px;
        text-transform: uppercase;
        color: #202629;
        font-family: var(--theme-font2);
        margin-bottom: 0px;
    }

    .profie-log-sec p {
        margin-bottom: 0px;
        font-size: 13px;
        line-height: 20px;
        text-transform: uppercase;
        color: #59626d;
        font-family: var(--theme-font);
    }

.top-header .icons {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 30px;
}

    .top-header .icons img {
        height: 20px;
        object-fit: contain;
    }

.top-right-sec > div {
    position: relative;
}

    .top-right-sec > div:not(:last-child)::before {
        position: absolute;
        content: "";
        width: 1px;
        height: 45px;
        right: -30px;
        background-color: #d7e0e9;
        top: 4px;
    }

.top-right-sec {
    gap: 60px;
}

.container-fluid {
    padding: 0px 30px;
}

.main-header .navbar-nav > li > a.active::before,
.main-header .navbar-nav > li > a:hover::before {
    width: 116%;
    left: -8%;
    position: absolute;
    content: "";
    height: 5px;
    background-color: #00aeef;
    bottom: 1px;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
}

.main-header .navbar-nav > li > a.active,
.main-header .navbar-nav > li > a:hover {
    color: #00aeef;
}

.main-header .navbar-nav li > a img {
    filter: brightness(0) invert(1);
}

.main-header .navbar-nav > li > a.active img,
.main-header .navbar-nav > li > a:hover img {
    filter: none;
}

.main-header .navbar-nav li a {
    position: relative;
    display: inline-block;
}

.main-header .navbar-nav li > a {
    font-size: 13px;
    line-height: 32px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: var(--theme-font2);
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: var(--color1);
}

.main-header .navbar-nav > li > a {
    font-size: 12px;
    line-height: 45px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: var(--theme-font);
}

    .main-header .navbar-nav > li > a img {
        max-height: 17px;
        object-fit: contain;
        margin-top: -2px;
    }

.main-header .navbar-nav > li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    transform: translateY(1px);
}

.main-header .navbar-nav > li:not(:last-child) {
    margin-right: 20px;
}

a {
    text-decoration: none !important;
}

.form-control:focus {
    box-shadow: none !important;
    background-color: #e6eff8;
}

.head1 {
    font-size: 20px;
    line-height: 26px;
    color: #04162d;
    font-family: "GraphikMedium";
}

.head2 {
    font-size: 16px;
    line-height: 26px;
    color: var(--theme-color2);
    font-family: "GraphikMedium";
    text-transform: uppercase;
}

.filter-box {
    border-radius: 6px;
    filter: var(--filter1);
    background-color: #ffffff;
}

hr {
    border-color: #565555;
}

.btn-1, .btn-2, .btn-3, .btn-4, .btn-5 {
    padding: 2px 10px;
    font-size: 12px;
    line-height: 32px;
    border: 0;
    border-radius: 3px;
    font-family: var(--theme-font2);
    text-transform: uppercase;
}

.btn-1 {
    color: #ffffff;
    background-color: var(--color1);
}

.btn-2 {
    color: #007fae;
    background-color: rgba(0, 174, 239, 0.2);
}

.btn-3 {
    color: #fff;
    background-color: #c31e1e;
}

.btn-4 {
    color: #ff0000;
    background-color: #ff8e8e7d;
}

.btn-5 {
    color: #fff;
    background-color: green;
}

.cmn-btn img {
    margin-right: 8px;
    max-height: 21px;
}

.cmn-btn.gradient1 img, .cmn-btn.gradient2 img {
    filter: brightness() invert(1);
}

.cmn-btn.gradient2 {
    color: #fff !important;
}

.cmn-btn-group .cmn-btn:not(:last-child):hover {
    background-image: var(--gradient1);
    color: #fff;
    border-color: white;
}

.cmn-btn-group.cmn-btn-group-hover .cmn-btn:last-child:hover {
    background-image: var(--gradient1) !important;
    color: #fff !important;
    border-color: white !important;
}

.cmn-btn-group .cmn-btn:not(:last-child):hover img {
    filter: brightness(5) invert(1);
}

.cmn-btn {
    border-radius: 3px;
    filter: var(--filter2);
    background-color: rgba(37, 57, 124, 0);
    border: 1px solid #d8dce7;
    font-family: "Graphik";
    font-size: 14px;
    /* line-height: 45px; */
    text-transform: uppercase;
    font-family: var(--theme-font2);
    padding: 3px 20px;
    min-height: 45px;
    display: flex;
    align-items: center;
}

.cmn-btn-group .cmn-btn {
    font-size: 13px;
    /* line-height: 45px; */
    text-transform: uppercase;
    font-family: var(--theme-font2);
    padding: 2px 15px;
    min-height: 35px;
    color: inherit;
    line-height: 23px;
}

    .cmn-btn-group .cmn-btn.gradient1 {
        color: #fff;
    }

    .cmn-btn-group .cmn-btn i {
        font-size: 25px;
        padding-right: 3px;
    }

.gradient1 {
    background-image: var(--gradient1);
    color: white;
}

.gradient2 {
    background-image: var(--gradient2);
    color: #fff;
}

.dataTables_length {
    display: none !important;
}

.cus-table-format > table > thead th {
    background-color: var(--theme-color2);
    color: #fff;
}

.cus-table-format > table > thead th {
    font-size: 13px;
    /* line-height: 30px; */
    color: #ffffff;
    font-family: var(--theme-font2);
    font-weight: initial;
    border-color: transparent;
    white-space: nowrap;
}

.cus-table-format .collapse.show td {
    background-color: #fff;
}

.tog-tr td {
    background-color: #8ecbff40;
    color: var(--theme-color);
}

.tog-tr.collapsed .drop-list-icon::after {
    content: "\f229";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    right: 5px;
    top: 7px;
}

.tog-tr .drop-list-icon::after {
    content: "\f235";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -0.125em;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    right: 5px;
    top: 7px;
}

.tog-tr td a, .cus-table-format .collapse.show a {
    color: #005cab !important;
}

.cus-table-format > table.drop-table > :not(caption) > * > * {
    border-color: #9fbdff;
}

table > thead th {
    font-size: 13px;
    line-height: 20px;
    color: #ffffff;
    font-family: var(--theme-font2);
    font-weight: initial;
}
.datetimepicker-days table > thead th, .datetimepicker-hours th, .datetimepicker-minutes th {
    color: #000;
}
    table table > thead th, table table > tbody td {
    padding: 5px !important;
}

.cus-table-format > table > thead > tr > th:first-child {
    border-top-left-radius: 6px !important;
    border-bottom-left-radius: 6px;
}

.cus-table-format > table > thead > tr > th:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

table {
    width: 100%;
    font-size: 13px;
    color: #121212;
    font-family: var(--theme-font);
}

.cus-table-format > table > tbody > tr:last-child > td {
    border-color: transparent;
}

.cus-table-format > table > :not(caption) > * > * {
    border-color: #d1d6e1;
    border-style: dashed !important;
    padding: 5px 6px 5px 15px;
    line-height: 20px;
    vertical-align: middle;
}

.action {
    display: inline-flex;
    gap: 3px;
    flex-wrap: wrap;
    width: 100px;
    /* background-color: #fff; */
}

    .action a,
    .action button {
        background-color: #eaf9ff;
        padding: 8px;
        color: var(--color1);
        border: 0px;
        line-height: 10px;
        border-radius: 4px;
    }

.action-list {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    gap: 20px;
}

    .action-list a span {
        font-size: 12px;
        color: #fff;
        background-color: #ccc;
        padding: 3px 5px;
        margin-left: -15px;
        padding-left: 20px;
        /* z-index: -1; */
        border-radius: 30px;
        position: relative;
    }

    .action-list a.notication-count span {
        background-color: #4474f0;
    }

    .action-list a.pdf-count span {
        background-color: #fc453a;
    }

    .action-list img {
        height: 25px;
        position: relative;
        z-index: 1;
    }

.action a,
.action button i {
    line-height: 10px;
}

.cus-table-format {
    overflow-x: auto;
    width: 100%;
}

    .cus-table-format > table > tbody > tr:nth-of-type(even) > * {
        --bs-table-bg-type: #00aeef0d !important;
    }

    .cus-table-format > table.drop-table > tbody > tr:nth-of-type(even) > * {
        --bs-table-bg-type: #fff !important;
    }

.cus-sticky.cus-table-format thead > tr > th:last-child,
.cus-sticky.cus-table-format tbody > tr > td:last-child {
    position: sticky;
    right: -1rem;
    background-color: #fff;
    text-align: center;
}

.cus-sticky.cus-table-format thead > tr > th:last-child {
    background-color: #00aeef;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    position: relative;
}

.cus-pagination {
    display: inline-flex;
    align-items: center;
    border-radius: 20px;
    filter: drop-shadow(0 0 7.5px rgba(0, 0, 0, 0.13));
    background-color: #fafafa;
    padding-inline: 5px;
    margin-right: 50px;
    position: relative;
}

    .cus-pagination a {
        line-height: 34px;
        margin-block: 5px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        color: #9c9c9c;
        font-family: var(--theme-font2);
    }

    .cus-pagination li.active a {
        background-color: var(--color1);
        color: #fff;
    }

        .cus-pagination li.active a:hover {
            background-color: var(--color1);
            color: #fff;
        }

    .cus-pagination > a:last-child {
        position: absolute;
        right: -45px;
    }

.btn-animate {
    animation: ring 2s infinite;
    transition: all 2s ease-in-out 2s;
}

@keyframes ring {
    0% {
        background-image: linear-gradient(0deg, #005bab 0%, #00adef 100%);
    }

    25% {
        background-image: linear-gradient(0deg, #056eca 0%, #00abefd5 100%);
    }

    50% {
        background-image: linear-gradient(0deg, #00adef 0%, #005bab 100%);
    }

    75% {
        background-image: linear-gradient(0deg, #005bab 0%, #00adef 100%);
    }

    100% {
        background-image: linear-gradient(0deg, #005babdc 0%, #00abefb7 100%);
        ;
    }
}

/* form */

fieldset {
    display: block;
    margin-inline-start: 2px;
    margin-inline-end: 2px;
    padding-block-start: 0px !important;
    padding-inline-start: 0em;
    padding-inline-end: 0em;
    padding-block-end: 0em;
    min-inline-size: auto;
    border-width: 1px;
    border-style: groove;
    border-color: var(--color2);
    border-image: initial;
    height: auto;
    border-radius: 2px;
}

    fieldset .legend {
        text-transform: capitalize;
        width: auto !important;
        max-width: auto !important;
        display: block !important;
        padding-inline-start: 2px !important;
        padding-inline-start: 2px !important;
        padding-inline-end: 2px !important;
        border-width: initial !important;
        border-style: none !important;
        border-color: initial !important;
        border-image: initial !important;
    }

legend {
    float: none;
    font-size: 11px !important;
    display: block;
    padding-inline: 4px;
    margin-inline: 10px;
    width: auto !important;
    margin-bottom: 0px !important;
    line-height: 12px;
    color: #3f3f3f;
    white-space: normal;
    z-index: 2;
    position: relative;
}

fieldset .input-box {
    font-size: 12px;
    line-height: 27px;
    color: #000;
    border: 0px;
    width: 100%;
    position: relative;
    height: 30px;
    padding-left: 13px;
    background-color: transparent;
    top: 0px !important;
}

table input {
    border-color: var(--color2) !important;
    border: 1px solid;
    width: 100%;
    line-height: 30px;
}

.proficiency-sec input {
    width: 100%;
    height: 40px;
    text-align: center;
    border: 1px solid var(--color2);
    color: var(--theme-color2);
    /* border-radius: 0px; */
}

.proficiency-sec ::placeholder {
    color: var(--theme-color2);
}

/* .table-input input{border: 1px solid var(--color2);} */
.table-input > div:first-child input {
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

.table-input > div:not(:last-child) input {
    border-right-color: transparent !important;
}

.table-input > div:first-child input {
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.proficiency-sec .label-input {
    width: 60px;
}

.proficiency-sec label {
    font-size: 13px;
}
/* 
fieldset input.input-box {
  top: -5px !important;
} */

fieldset .input-box option {
    padding: 30px;
    display: inline-block !important;
    line-height: 30px !important;
}

::placeholder {
    color: #757575;
}

.input-box:focus {
    outline: transparent !important;
    box-shadow: none !important;
}

.input-box:focus-visible {
    outline: transparent !important;
    box-shadow: none !important;
}

.input-imp {
    color: #ff3737;
    position: relative;
    top: 2px;
    /* padding: 3px; */
}

/* check-box */

.cus-checkbox label {
    font-size: 14px;
}

table p:last-child {
    margin-bottom: 0px !important;
}

table p {
    margin-bottom: 6px;
}

/* tables */
.cus-res-table table th {
    border-top: none;
    color: #fff;
    font-family: "Poppins-Light";
    background-color: #1a92d7;
    font-weight: normal;
}

.cus-table-btn {
    background-color: transparent;
    padding: 4px 17px;
    border-radius: 2px;
    border: 1px solid #ccc;
    cursor: pointer;
    display: inline-block;
}

.cus-table-btn1 {
    background-color: transparent;
    padding: 4px 17px;
    border-radius: 2px;
    border: 1px solid #ff3737;
    cursor: pointer;
    color: #ff3737 !important;
    font-size: 14px;
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100%;
    margin-top: 15px;
}


.top-header {
    display: block;
}

fieldset::-webkit-scrollbar {
    display: none;
}

.radio-btn label,
.radio-btn input,
.cus-checkbox input,
.cus-checkbox label {
    cursor: pointer;
}

.radio-btn input,
.cus-checkbox input {
    position: relative;
    top: 1.9px;
}

/* Custom checkbox */
input[type="checkbox"] + label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    margin-right: 15px;
    font-size: 13px;
}

    input[type="checkbox"] + label:before {
        content: "";
        display: block;
        width: 16px;
        height: 16px;
        margin-right: 11px;
        position: absolute;
        top: 50% !important;
        transform: translateY(-50%);
        left: 0;
        border: 1px solid transparent;
        background-color: #f1f1f2;
        border-radius: 3px;
    }

input[type="checkbox"] {
    position: absolute;
    visibility: hidden;
    opacity: 0;
}

    input[type="checkbox"]:checked + label:after {
        content: "✔";
        font-size: 15px;
        line-height: 18px;
        color: #fff;
        background: var(--color1);
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0px;
        width: 16px;
        height: 16px;
        border-radius: 3px;
    }

.bi-eye-slash-fill.bi-eye-fill.bi-eye-fill::before {
    content: "\f33e" !important;
}

/* form-error */
.error {
    color: red;
    font-style: inherit;
}

    .error.help-block {
        color: #ff3737;
        font-style: normal;
        font-size: 13px;
        text-transform: capitalize;
        line-height: 20px;
        display: inline-block;
    }

fieldset.has-error {
    border-color: #ff3737;
}

.cus-text {
    position: relative;
    width: 100%;
}

    .cus-text textarea {
        border-color: #ff3737;
    }

    .cus-text .labe {
        background-color: #fff;
        display: inline-block;
        position: relative;
        bottom: 15px;
    }

.cus-group {
    width: 100%;
}

fieldset.cus-filedset {
    height: 90px;
}

    fieldset.cus-filedset textarea {
        height: 70px;
        padding-top: 5px;
    }

.dot-line {
    border-bottom: 1px dashed #ccc;
    margin-top: 5px;
}


/* Radio buttons */

/* .radio-btn-group input[type="radio"] {
    display: none;
  } */

.radio-btn-group label {
    cursor: pointer;
    position: relative;
    font-size: 14px;
}

/* 
  .radio-btn-group label::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    top: 50%;
    left: -5rem;
    transform: translateY(-50%);
    transition: border-color 400ms ease;
  }
  
  .radio-btn-group label::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: -5rem;
    transform: translateY(-50%) scale(0);
    transition: transform 400ms ease;
  }
  
  .radio-btn-group input[type="radio"]:checked + label::before {
    border-color: var(--primary-color);
  }
  
  .radio-btn-group input[type="radio"]:checked + label::after {
    transform: translateY(-50%) scale(0.55);
  } */

/* check-box */

.cus-checkbox label {
    font-size: 14px;
}

/* Sumo Select css  start*/
.SelectClass,
.SumoSelect.open .search-txt,
.SumoUnder {
    position: absolute;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    top: 0;
    left: 0;
}

.SumoSelect p {
    margin: 0;
}

.SumoSelect {
    width: 200px;
}

.SelectBox {
    padding: 0px !important;
}

.sumoStopScroll {
    overflow: hidden;
}

.SumoSelect .hidden {
    display: none;
}

.SumoSelect .search-txt {
    display: none;
    outline: 0;
}

.SumoSelect .no-match {
    display: none;
    padding: 6px;
}

.SumoSelect.open .search-txt {
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 5px 8px;
    border: none;
    box-sizing: border-box;
    border-radius: 5px;
}

.SumoSelect.open > .search > label,
.SumoSelect.open > .search > span {
    visibility: hidden;
}

.SelectClass,
.SumoUnder {
    right: 0;
    height: 100%;
    width: 100%;
    border: none;
    box-sizing: border-box;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
}

.SelectClass {
    z-index: 1;
}

.SumoSelect .select-all > label,
.SumoSelect > .CaptionCont,
.SumoSelect > .optWrapper > .options li.opt label {
    user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
}

.SumoSelect {
    display: inline-block;
    position: relative;
    outline: 0;
}

    .SumoSelect.open > .CaptionCont,
    .SumoSelect:focus > .CaptionCont,
    .SumoSelect:hover > .CaptionCont {
        box-shadow: 0 0 2px #7799d0;
        border-color: #7799d0;
    }

    .SumoSelect > .CaptionCont {
        position: relative;
        border: 1px solid #a4a4a4;
        min-height: 14px;
        background-color: #fff;
        border-radius: 2px;
        margin: 0;
    }

        .SumoSelect > .CaptionCont > span {
            display: block;
            padding-right: 30px;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
            cursor: default;
        }

            .SumoSelect > .CaptionCont > span.placeholder {
                color: #ccc;
                font-style: normal !important;
                background-color: transparent;
            }

        .SumoSelect > .CaptionCont > label {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 30px;
        }

            .SumoSelect > .CaptionCont > label > i {
                background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wMdBhAJ/fwnjwAAAGFJREFUKM9jYBh+gBFKuzEwMKQwMDB8xaOWlYGB4T4DA0MrsuapDAwM//HgNwwMDDbYTJuGQ8MHBgYGJ1xOYGNgYJiBpuEpAwODHSF/siDZ+ISBgcGClEDqZ2Bg8B6CkQsAPRga0cpRtDEAAAAASUVORK5CYII=);
                background-position: center center;
                width: 16px;
                height: 16px;
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                margin: auto;
                background-repeat: no-repeat;
                opacity: 0.8;
            }

    .SumoSelect > .optWrapper {
        display: none;
        z-index: 1000;
        top: 30px;
        width: 100%;
        position: absolute;
        left: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        background: #fff;
        border: 1px solid #ddd;
        box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.11);
        border-radius: 3px;
        overflow: hidden;
    }

    .SumoSelect.open > .optWrapper {
        top: 36px !important;
        display: block;
    }

        .SumoSelect.open > .optWrapper.up {
            top: auto;
            bottom: 100%;
            margin-bottom: 5px;
        }

    .SumoSelect > .optWrapper ul {
        list-style: none;
        display: block;
        padding: 0;
        margin: 0;
        overflow: auto;
    }

    .SumoSelect > .optWrapper > .options {
        border-radius: 2px;
        position: relative;
        max-height: 250px;
    }

        .SumoSelect > .optWrapper > .options li.group.disabled > label {
            opacity: 0.5;
        }

        .SumoSelect > .optWrapper > .options li ul li.opt {
            padding-left: 22px;
        }

    .SumoSelect > .optWrapper.multiple > .options li ul li.opt {
        padding-left: 50px;
    }

    .SumoSelect > .optWrapper.isFloating > .options {
        max-height: 100%;
        box-shadow: 0 0 100px #595959;
    }

    .SumoSelect > .optWrapper > .options li.opt {
        padding: 6px;
        position: relative;
        border-bottom: 1px solid #f5f5f5;
    }

    .SumoSelect > .optWrapper > .options > li.opt:first-child {
        border-radius: 2px 2px 0 0;
    }

    .SumoSelect > .optWrapper > .options > li.opt:last-child {
        border-radius: 0 0 2px 2px;
        border-bottom: none;
    }

    .SumoSelect > .optWrapper > .options li.opt:hover {
        background-color: var(--color1) !important;
    }

    .SumoSelect > .optWrapper > .options li.opt.sel {
        background-color: #a1c0e4;
        border-bottom: 1px solid #a1c0e4;
    }

    .SumoSelect > .optWrapper > .options li label {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        display: block;
        cursor: pointer;
    }

    .SumoSelect > .optWrapper > .options li span {
        display: none;
    }

    .SumoSelect > .optWrapper > .options li.group > label {
        cursor: default;
        padding: 8px 6px;
        font-weight: 700;
    }

    .SumoSelect > .optWrapper.isFloating {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 90%;
        bottom: 0;
        margin: auto;
        max-height: 90%;
    }

    .SumoSelect > .optWrapper > .options li.opt.disabled {
        background-color: inherit;
        pointer-events: none;
    }

        .SumoSelect > .optWrapper > .options li.opt.disabled * {
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
            filter: alpha(opacity=50);
            -moz-opacity: 0.5;
            -khtml-opacity: 0.5;
            opacity: 0.5;
        }

    .SumoSelect > .optWrapper.multiple > .options li.opt {
        padding-left: 35px;
        cursor: pointer;
    }

        .SumoSelect .select-all > span,
        .SumoSelect > .optWrapper.multiple > .options li.opt span {
            position: absolute;
            display: block;
            width: 30px;
            top: 0;
            bottom: 0;
            margin-left: -35px;
        }

            .SumoSelect .select-all > span i,
            .SumoSelect > .optWrapper.multiple > .options li.opt span i {
                position: absolute;
                margin: auto;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                width: 14px;
                height: 14px;
                border: 1px solid #aeaeae;
                border-radius: 2px;
                box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
                background-color: #fff;
            }

    .SumoSelect > .optWrapper > .MultiControls {
        display: none;
        border-top: 1px solid #ddd;
        background-color: #fff;
        box-shadow: 0 0 2px rgba(0, 0, 0, 0.13);
        border-radius: 0 0 3px 3px;
    }

    .SumoSelect > .optWrapper.multiple.isFloating > .MultiControls {
        display: block;
        margin-top: 5px;
        position: absolute;
        bottom: 0;
        width: 100%;
    }

    .SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls {
        display: block;
    }

        .SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls > p {
            padding: 6px;
        }

    .SumoSelect > .optWrapper.multiple > .MultiControls > p {
        display: inline-block;
        cursor: pointer;
        padding: 12px;
        width: 50%;
        box-sizing: border-box;
        text-align: center;
    }

        .SumoSelect > .optWrapper.multiple > .MultiControls > p:hover {
            background-color: #f1f1f1;
        }

        .SumoSelect > .optWrapper.multiple > .MultiControls > p.btnOk {
            border-right: 1px solid #dbdbdb;
            border-radius: 0 0 0 3px;
        }

        .SumoSelect > .optWrapper.multiple > .MultiControls > p.btnCancel {
            border-radius: 0 0 3px;
        }

    .SumoSelect > .optWrapper.isFloating > .options li.opt {
        padding: 12px 6px;
    }

    .SumoSelect > .optWrapper.multiple.isFloating > .options li.opt {
        padding-left: 35px;
    }

    .SumoSelect > .optWrapper.multiple.isFloating {
        padding-bottom: 43px;
    }

    .SumoSelect .select-all.partial > span i,
    .SumoSelect .select-all.selected > span i,
    .SumoSelect > .optWrapper.multiple > .options li.opt.selected span i {
        background-color: #11a911;
        box-shadow: none;
        border-color: transparent;
        background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAGCAYAAAD+Bd/7AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNXG14zYAAABMSURBVAiZfc0xDkAAFIPhd2Kr1WRjcAExuIgzGUTIZ/AkImjSofnbNBAfHvzAHjOKNzhiQ42IDFXCDivaaxAJd0xYshT3QqBxqnxeHvhunpu23xnmAAAAAElFTkSuQmCC);
        background-repeat: no-repeat;
        background-position: center center;
    }

    .SumoSelect.disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

        .SumoSelect.disabled > .CaptionCont {
            border-color: #ccc;
            box-shadow: none;
        }

    .SumoSelect .select-all {
        border-radius: 3px 3px 0 0;
        position: relative;
        border-bottom: 1px solid #ddd;
        background-color: #fff;
        padding: 8px 0 3px 35px;
        height: 20px;
        cursor: pointer;
    }

        .SumoSelect .select-all > label,
        .SumoSelect .select-all > span i {
            cursor: pointer;
        }

        .SumoSelect .select-all.partial > span i {
            background-color: #ccc;
        }

    .SumoSelect > .optWrapper > .options li.optGroup {
        padding-left: 5px;
        text-decoration: underline;
    }

.SumoSelect {
    width: 100% !important;
    /* top: 7px !important; */
    top: 10px !important;
    margin-top: -13px;
    /* margin-top: -1px; */
}

    .SumoSelect > .CaptionCont {
        width: 100%;
        border: 0px !important;
        line-height: 36px !important;
    }

    .SumoSelect.open > .CaptionCont,
    .SumoSelect:focus > .CaptionCont,
    .SumoSelect:hover > .CaptionCont {
        box-shadow: none !important;
    }


    .SumoSelect > .optWrapper > .options {
        background-color: var(--theme-color2);
        color: #fff;
    }

        .SumoSelect > .optWrapper > .options li.opt {
            border-color: #ffffff85 !important;
        }

fieldset .SumoSelect {
    padding-left: 13px !important;
}

.SumoSelect > .CaptionCont > span.placeholder {
    color: #888888 !important;
    opacity: 1;
}

table .SumoSelect > .CaptionCont {
    width: 100%;
    border: 1px solid #a4a4a4 !important;
    line-height: 26px !important;
    padding: 0px 10px !important;
}


/*kiran Sumo select Code*/
.SumoSelect .select-all {
    cursor: pointer;
    background-color: #00aeef !important;
    color: #fff !important;
    display: flex !important;
    align-items: center;
    height: 32px !important;
}

    .SumoSelect .select-all label {
        margin-top: -5px;
    }
/*# sourceMappingURL=sumoselect.min.css.map */
/* Sumo Select css end */
.vertical-initail.cus-table-format > table > :not(caption) > * > * {
    vertical-align: initial !important;
}


/*kiran Sumo select Code End*/

.small-btn {
    background-color: var(--color1);
    color: #fff;
    border: 0;
    box-shadow: none;
    border-radius: 30px;
    float: right;
    font-size: 12px;
    display: flex;
    align-items: center;
    line-height: 15px;
    padding: 4px 8px 3px 8px;
    margin-top: 1px;
}

    .small-btn i {
        padding-right: 2px;
    }

    .small-btn:hover {
        background-color: var(--theme-color);
    }

/* custom modal */
.cus-modal .modal-dialog {
    margin-top: 80px;
}

.cus-modal .modal-body {
    /* margin-top: 50px; */
    padding-top: 30px;
}

.ls-0p {
}

.cus-modal button {
    text-transform: capitalize !important;
}

.cus-modal .btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
}

.cus-modal-head span {
    position: absolute;
    font-size: 60px;
    top: -50px;
    background: #fff;
    /* padding: 11px; */
    width: 120px;
    height: 110px;
    left: 50%;
    border-radius: 50%;
    transform: translateX(-50%);
    text-align: center;
}

    .cus-modal-head span i {
        position: relative;
        transform: translateY(-50px);
    }

.cus-modal .modal-content {
    border-radius: 3px;
}

.cus-pagination-sec {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 10px 60px;
    border-top: 1px solid #00aeef;
    z-index: 20;
}

.cus-pagination > .row {
    width: 100%;
}

.menu-hover .dropdown-menu li {
    padding-inline: 10px;
    font-size: 13px;
    text-align: center;
    padding-block: 6px;
    line-height: 18px;
}

    .menu-hover .dropdown-menu li:not(:last-child) {
        border-bottom: 1px solid #ccc;
    }

a {
    color: #00aeef;
}

.menu-hover ul {
    padding: 0px;
}

table a {
    font-family: var(--theme-font2);
}

    table a i {
        padding-left: 2px;
    }

.right-btn {
    float: right;
    display: inline-block;
    border: 0px;
    font-family: var(--theme-font);
    font-size: 14px;
    background-color: var(--color1);
    color: #fff;
    padding-inline: 12px;
    padding-block: 3px;
    border-radius: 4px;
}


.menu-hover > div > span {
    float: right;
    /*background-color: #fff;*/
    font-size: 18px;
    color: var(--color1);
    padding-left: 10px;
}

.menu-hover > div {
    border: 1px solid #f1f1f1;
    padding: 3px 10px;
    display: inline-block;
    width: 115px;
}

.pos-btm-fixed {
    position: fixed;
    bottom: 0px;
    width: 100%;
    border-top: 1px solid #00aeef;
    padding: 15px 30px;
    width: 100%;
    background-color: #fff;
    z-index: 20;
}

.font17 {
    font-size: 17px;
}

.font16 {
    font-size: 16px;
}

.font14 {
    font-size: 14px;
}

.font13 {
    font-size: 13px;
}

.font12 {
    font-size: 11px;
}

.font11 {
    font-size: 11px;
}

.clr3 {
    color: #ff0000;
}

.action-list a.notication-count span, .action-list a.pdf-count span {
    position: relative;
    animation: mymove 1.5s;
    animation-iteration-count: 1;
}

@keyframes mymove {
    from {
        right: 10px;
    }

    to {
        right: 0px;
    }
}


.td-whitespace.cus-table-format > table > :not(caption) > * > * {
    white-space: nowrap;
}

table input[type="checkbox"] + label {
    margin-right: 0px;
}

.main-header.extraclass {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1080;
}

/* Master Accordiation  */

.document-accordion > div:not(:last-child) {
    margin-bottom: 3px;
}

.country-floder {
    border: 1px solid #ccc;
    padding-inline: 12px;
}

    .country-floder a.f-icon {
        font-size: 13px;
        font-family: var(--theme-font);
        color: inherit;
        padding: 7px 0px;
        line-height: 20px;
    }

.body-content {
    padding-left: 15px;
    border-top: 1px solid #ccc;
}

.f-icon {
    position: relative;
    display: block;
}

    .f-icon.collapsed::before {
        content: "\F37C";
        display: inline-block;
        font-family: bootstrap-icons !important;
        font-style: normal;
        font-weight: normal !important;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        vertical-align: -0.125em;
        -webkit-font-smoothing: antialiased;
        color: var(--color1);
        font-size: 18px;
        margin-right: 3px;
        position: relative;
        transform: translateY(2px);
    }

    .f-icon::before {
        content: "\f374";
        display: inline-block;
        font-family: bootstrap-icons !important;
        font-style: normal;
        font-weight: normal !important;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        vertical-align: -0.125em;
        -webkit-font-smoothing: antialiased;
        color: #ea2840;
        font-size: 18px;
        margin-right: 3px;
        position: relative;
        transform: translateY(2px);
    }

.download-list {
    padding-left: 20px;
}

    .download-list a:hover {
        margin-left: 3px;
        transition: 0.3s;
    }

    .download-list > div {
        padding: 8px 0px;
    }

    .download-list a {
        display: inline-block;
        transition: 0.3s;
        color: var(--theme-color);
    }

.document-accordion .action a {
    padding: 3px;
    margin-left: 4px;
}

.document-accordion .action {
    margin-left: 20px;
}

/* Dashboard Section */

.dashboard-sec1 .icon-box {
    display: flex;
    padding: 25px;
    padding-right: 30px;
    color: #fff;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-radius: 3px;
}

    .dashboard-sec1 .icon-box:hover .board-arrow {
        margin-left: 5px;
        transition: 1s;
    }

.board-count {
    font-family: 'GraphikMedium';
    font-size: 28px
}

.board-icon {
    font-size: 40px;
    position: relative;
    transform: translateY(10px);
    transition: 1s;
}

.board-arrow {
    transition: 1s;
    font-size: 18px;
}

.about-icon-box {
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 5px;
    color: #fff;
}

.bg1 {
    background-image: linear-gradient(90deg, rgba(255, 125, 69, 1) 0%, rgba(255, 175, 121, 1) 100%);
}

.bg2 {
    background-image: linear-gradient(90deg, rgba(1, 169, 172, 1) 0%, rgba(1, 219, 223, 1) 100%);
}

.bg3 {
    background-image: linear-gradient(90deg, rgba(0, 174, 113, 1) 0%, rgba(33, 219, 154, 1) 100%);
}

.bg4 {
    background-image: linear-gradient(90deg, rgba(255, 74, 95, 1) 0%, rgba(254, 143, 156, 1) 100%);
}

.bg5 {
    background-image: linear-gradient(90deg, rgba(0, 101, 186, 1) 0%, rgba(78, 158, 225, 1) 100%);
}

.bg6 {
    background-image: linear-gradient(90deg, rgba(255, 144, 0, 1) 0%, rgba(255, 206, 89, 1) 100%);
}

.bg2 .board-icon {
    color: rgb(3, 167, 170);
}

.bg3 .board-icon {
    color: rgba(0, 174, 113, 1);
}

.bg4 .board-icon {
    color: rgba(255, 74, 95, 1);
}

.bg5 .board-icon {
    color: rgba(0, 101, 186, 1);
}

.bg6 .board-icon {
    color: rgba(255, 144, 0, 1);
}

.bg1 .board-icon {
    color: rgba(255, 125, 69, 1);
}

.icon-box:hover .board-icon {
    transform: translateX(-3px);
    /* font-size: 45px; */
    transition: 1s;
}

/* Event Secton */

.event-arrow-sec span {
    font-size: 25px;
    line-height: 20px;
    font-family: var(--theme-font4);
    padding-inline: 15px;
}

.event-arrow-sec i {
    font-size: 30px;
    position: relative;
    transform: translateY(2px);
    display: inline-block;
}

.event-box .bg-sec {
    background-color: var(--theme-color2);
    color: #fff;
    padding: 20px;
    border-bottom: 1px solid #d5d5d5;
    font-family: var(--theme-font4);
    max-width: 150px;
}

.event-box {
    border: 1px solid #d5d5d5;
}

    .event-box .date {
        font-size: 35px;
        line-height: 30px;
    }

    .event-box .fulldate {
        font-size: 22px;
        line-height: 35px;
    }

    .event-box .time {
        font-size: 14px;
        line-height: 20px;
        font-family: var(--theme-font2);
    }

    .event-box > div:first-child {
        border-bottom: 1px solid #d5d5d5;
    }

.event-btn-sec > a {
    display: inline-block;
    text-align: center;
    padding: 4px 2px;
}

.event-btn-sec {
    display: flex;
    border-top: 1px solid #d5d5d5;
}

    .event-btn-sec > a:nth-child(1) {
        width: 40%;
        background-color: green;
        color: #fff;
    }

    .event-btn-sec > a:nth-child(2) {
        width: 25%;
        color: #007fae;
        background-color: rgba(0, 174, 239, 0.2);
    }

    .event-btn-sec > a:nth-child(3) {
        width: 25%;
        color: #000;
        background-color: rgba(187, 187, 187, 0.2);
    }

    .event-btn-sec > a:nth-child(4) {
        width: 10%;
        color: #ff3e3e;
        background-color: #ff8e8e7d;
    }

.event-box.completed {
    opacity: 0.6;
}

.event-box:hover {
    opacity: 1;
}





































@media (width <=1700px) {
    .event-box .date {
        font-size: 32px;
        line-height: 30px;
    }

    .event-box .fulldate {
        font-size: 20px;
        line-height: 35px;
    }

    .event-box .time {
        font-size: 13px;
        line-height: 20px;
        font-family: var(--theme-font2);
    }

    .event-box .bg-sec {
        color: #fff;
        padding: 12px;
    }

    .btn-1, .btn-2, .btn-3, .btn-4 {
        line-height: 34px;
    }

    table input {
        line-height: 28px;
    }

    table .btn-1, table .btn-2, table .btn-3, table .btn-4 {
        line-height: 28px;
    }

    table tbody > tr:last-child td {
        font-size: 13px;
    }

    .cus-table-format > table > thead th {
        font-size: 13px;
        line-height: 24px;
    }

    .action button i {
        font-size: 13px;
    }

    .action button {
        padding: 8px;
    }

    .cmn-btn-group .cmn-btn {
        font-size: 12px;
        padding: 2px 15px;
        min-height: 30px;
    }

    .menu-hover:hover ul {
        display: block;
    }
}

@media (width >=1600px) {
    .proficiency-sec .label-input {
        width: 70px;
    }
}

@media (width <=1366px) {
    .login-form label {
        font-size: 11px;
    }

    .login-form .cus-group img, .cus-group i {
        position: absolute;
        right: 20px;
        top: 17px;
        z-index: 2;
        width: 18px;
    }

    .login-form .cus-group i {
        font-size: 20px;
        color: #656565;
        top: 11px;
    }

    .btn-1, .btn-2, .btn-3, .btn-4 {
        line-height: 32px;
    }

    .login-sec .login-form {
        padding: 30px;
        max-width: 350px;
        width: auto !important;
    }

    .main-header .navbar-nav > li:not(:last-child) {
        margin-right: 35px;
    }

    .login-form input {
        font-size: 13px;
        height: 46px;
        padding: 23px 35px 9px 30px;
        margin-bottom: 10px;
    }

    .login-form .logo {
        margin-bottom: 30px;
    }

    .login-content .forget {
        margin-top: 20px;
    }

    .login-head {
        font-size: 26px;
        line-height: 38px;
    }

    .login-btn {
        height: 34px;
        line-height: 32px;
    }

    legend {
        line-height: 12px;
    }

    fieldset input.input-box {
        top: -2px !important;
    }

    /* .SumoSelect {
    top: 11px !important;
  } */

    /* 
  .btn-1,
  .btn-2 {
    line-height: 35px;
  } */

    .cmn-btn {
        min-height: 41px;
        line-height: 25px;
    }

        .cmn-btn img {
            margin-top: -2px;
        }

    .main-header .navbar-nav > li > a {
        gap: 5px;
    }

    .main-header .navbar-nav > li:not(:last-child) {
        margin-right: 18px;
    }
}

@media (width <=991px) {
    .dropdown-menu {
        display: none !important;
    }

        .dropdown-menu.active {
            display: block !important;
        }

    .main-header .navbar-nav > li > a {
        display: block;
        text-align: start;
    }


        .main-header .navbar-nav > li > a.active::before, .main-header .navbar-nav > li > a:hover::before {
            width: 100%;
            left: auto;
            right: auto;
            position: absolute;
            content: "";
            height: 2px;
            background-color: #00aeef;
            bottom: 1px;
            border-top-right-radius: 30px;
            border-top-left-radius: 30px;
        }

    li.dropdown > a {
        position: relative;
    }

        li.dropdown > a::after {
            content: '\F229';
            position: absolute;
            z-index: 20;
            right: 0;
            display: inline-block;
            font-family: bootstrap-icons !important;
            font-style: normal;
            font-weight: normal !important;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            vertical-align: -0.125em;
            -webkit-font-smoothing: antialiased;
            color: var(--color1);
            font-size: 18px;
            margin-right: 3px;
            width: 50px;
            transform: translateY(12px);
            height: 100%;
        }

    .ul-3 {
        columns: 1
    }

    .navbar-collapse {
        padding-top: 20px;
    }

    .dropdown .dropdown-menu {
        overflow-y: auto;
    }

    .main-header .navbar-nav > li > a.active::before, .main-header .navbar-nav > li > a:hover::before {
        border: 1px;
    }

    .main-header .navbar-nav > li:not(:last-child) {
        margin-right: 0px;
    }

    .search-box input {
        padding-left: 30px;
    }

    .header-sec .top-header {
        flex-direction: column;
    }
    /* 
  .top-right-sec {
    margin-top: 10px;
    flex-direction: column;
    width: 100%;
  }

  .top-right-sec form {
    width: 100%;
    display: block !important;
    margin-bottom: 10px;
  }

  .search-box input {
    width: 100%;
  } */

    .top-right-sec {
        display: none !important;
    }

    .navbar-toggler-icon {
        filter: brightness(0.5) invert(1);
    }

    .navbar-toggler {
        padding: 0px;
    }

    button:focus-visible, button:focus-within {
        box-shadow: none !important;
        outline: none !important;
    }

    .dropdown .dropdown-menu {
        display: none;
    }

    .container-fluid {
        padding: 0px 15px;
    }

    /* .top-right-sec form {
    position: absolute;
    width: 80%;
    display: block !important;
    margin-bottom: 10px;
    top: 26px;
    z-index: 10;
  } */

    .search-box img {
        position: absolute;
        left: 10px;
        width: 14px;
    }

    .navbar.navbar-expand-lg {
        width: 100%;
        display: block !important;
        text-align: end;
        padding: 10px 0px !important;
    }

    .search-box input {
        font-size: 13px;
        line-height: 24px;
    }

    .top-right-sec form {
        display: none !important;
    }
}


/*Durga*/

.top-notifcation {
    position: absolute;
    top: 125px;
    right: 30px;
    width: 30%;
}

.cus-dropdown-menu {
    border: 1px solid #d5d5d5;
    display: none !important;
    background-color: #fff;
    list-style: none;
    --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

    .cus-dropdown-menu li {
        padding: 5px 14px !important;
    }

        .cus-dropdown-menu li:not(:last-child) {
            border-bottom: 1px solid #d5d5d5;
        }

.menu-hover:hover .cus-dropdown-menu {
    display: block !important;
    position: absolute;
    z-index: 10
}

a {
    cursor: pointer
}


.ui-datepicker {
    z-index: 10 !important
}

.ui-widget-header {
    /*background-image:none !important;*/
    background-color: var(--theme-color) !important;
}

.hide {
    display: none;
}


.SumoSelect {
    position: relative;
}

    .SumoSelect select {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 100% !important;
        width: 100% !important;
        border: none;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0 !important;
    }

.profile-hover {
    position: relative;
}

    .profile-hover .profile-dropdown-menu {
        border-radius: 10px;
        filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.1));
        background-color: #ffffff;
        border: 0px !important;
        padding: 10px;
        background-color: #fff;
        transition: visibility 0s, opacity 0.2s linear;
        display: none;
        position: absolute;
        left: -50px;
        z-index: 9999;
        border-radius: 6px;
    }

    .profile-hover:hover .profile-dropdown-menu {
        display: block;
    }

    .profile-hover ul {
        padding: 0px;
        list-style: none;
        border-radius: 6px;
    }

        .profile-hover ul li a {
            line-height: 30px;
            padding: 8px 13px;
            color: #0d0d0d;
            font-size: 13px;
            text-transform: capitalize;
            font-family: var(--theme-font);
            border-radius: 4px;
            line-height: 24px;
        }

            .profile-hover ul li a:hover {
                color: #fff !important;
                background-color: var(--theme-color2);
            }

.ui-datepicker {
    z-index: 1056 !important;
}

.ui-autocomplete {
    transform: translateX(-50%);
    left: 49% !important;
    top: 61px !important;
}

.auto-search {
    position: absolute;
    top: 40px;
    width: 100%;
    background-color: var(--theme-color2);
    color: #fff;
    z-index: 100;
    padding-left: 0px;
    box-shadow: 2px 3px 3px rgba(0,0,0,.11);
    border-radius: 3px;
    overflow: hidden;
    max-height: 400px;
    overflow-y: auto !important;
    left:0;
}
.ui-widget-content {
    background-color: var(--theme-color2) !important;
    box-shadow: 2px 3px 3px rgba(0,0,0,.11) !important;
    overflow: hidden;
    max-height: 400px;
    overflow-y: auto !important;
    border-radius: 3px;
}

.auto-search li {
    list-style: none;
    padding: 8px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}
.ui-widget-content li {
    font-family: var(--theme-font) !important;
    font-size: 13px !important;
    list-style: none;
    padding: 8px !important;
    border: 0px !important;
    /*border:0px !important;*/
    border-bottom: 1px solid #f5f5f5 !important;
    cursor: pointer;
    background-color: var(--theme-color2) !important;
    color: #fff !important;
    background-image: none !important;
}
.ui-widget-content li:hover {
    
    background-color: var(--color1) !important;
    background-image:none !important;
}
.ui-widget-content a{
    color:#fff !important;
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        padding-left: 250px;
    }
}

.auto-search li.ui-state-focus {
    background-color: transparent;
    color: inherit;
    /* Add any other properties you want to reset */
}

.head2 .right-btn span {
    margin-right: 7px;
}

.pluss_curcle {
    border: 2px solid #fff;
    border-radius: 50%;
    padding-inline: 6px;
    font-weight: bold;
}

.under_line {
    text-decoration: underline !important;
}


/* Raju */

.cn-board-grid {
    border: 1px solid #01a9ac;
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

    .cn-board-grid .about-icon-box {
        color: #000;
    }

.dashboard-sec1 .cn-board-grid .icon-box {
    color: #000;
    height: 100%;
    padding: 20px !important;
}

.cn-board-grid .head2 {
    color: #000;
    font-size: 14px;
}

.cn-board-grid > div:nth-child(1) .icon-box, .cn-board-grid > div:nth-child(2) .icon-box {
    color: #00ae71;
}

.cn-board-grid > div:nth-child(3) .icon-box, .cn-board-grid > div:nth-child(4) .icon-box {
    color: #ff7e46;
}

.cn-board-grid > div:not(:nth-child(4n)) {
    border-right: 1px solid #01a9ac;
}

.cn-board-grid > div:nth-child(n+5) {
    border-top: 1px solid #01a9ac;
}

.check-label1 input {
    position: absolute;
    z-index: -1;
    visibility: hidden;
}

    .check-label1 input[type="checkbox"] + label:before, .check-label1 input[type="checkbox"] + label::after {
        display: none !important;
    }

.check-label1 label {
    border: 1px solid #ccc;
    padding: 4px !important;
}

.check-label1 input[type="checkbox"]:checked + label {
    background-color: #00aeef33;
    color: #007fae !important;
}

.check-label1 {
    text-align: center;
    width: 100%;
    position: relative;
}

    .check-label1 label {
        width: 100%;
        font-size: 12px !important;
    }

.dashboard-sec1 table .btn-1 {
    padding: 3px 8px !important;
    border-radius: 2px !important;
}
.cus-check-share {
    background-color: #cceffc;
    padding: 20px;
}

    .cus-check-share input[type="checkbox"] + label:before {
        background-color: #002d64;
    }

    .cus-check-share .cus-checkbox {
        margin-bottom: 6px;
    }
.status-access .check-label1 input[type="checkbox"]:checked + label {
    background-color: #fff !important;
    color: #007fae !important;
}
.status-access .check-label1 input[type="checkbox"]:checked + label.opt-select {
    background-color: #ae73731c !important;
    color: #007fae !important;
}
    .status-access .check-label1 input[type="checkbox"]:checked + label.inactive {
        background-color: #fff !important;
        color: #007fae !important;
    }
    .status-access .check-label1 input[type="checkbox"]:checked + label.active {
        background-color: #00800029 !important;
        color: #007fae !important;
    }

.zoom i{
    font-size:50px;
    animation: zoom-in-zoom-out 2s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
    0% {
        font-size:50px;
    }

    50% {
        font-size: 58px;
    }

    100% {
        font-size: 50px;
    }
}

/*WebViews*/


body.web-view {
    font-size: 13px !important;
    line-height: 22px !important;
    color: #343434 !important;
    font-family: 'GraphikLight';
}

.web-view strong {
    font-family: 'GraphikMedium';
    font-weight: inherit !important;
}

.head-1 {
    font-family: 'GraphikSemibold';
    font-size: 25px;
    line-height: 30px;
}

.head-2 {
    font-family: 'GraphikSemibold';
}

.web-view ul, .web-view ol {
    margin: 0px;
    padding: 0px;
    list-style: circle;
    margin-bottom: 10px;
    margin-left: 5px;
}

    .web-view ul li, .web-view  ol li {
        padding-block: 5px;
        /* padding-left: 30px; */
        margin-left: 15px;
    }



.btn_danger:hover {
    color: #ff3e3e !important;
    background-color: #ff8e8e7d !important;
}
.font18{
    font-size:18px;
}


button.ui-datepicker-current{
    display:none !important;
}

.highcharts-exporting-group {
    display: none !important
}
.highcharts-credits{display:none !important; }


.highcharts-title {
    display: none !important
}

.modal-dialog{
    pointer-events:inherit !important;
}


/* 25-07-2024 kiran Css-left: 30px; */


.personal__detail__set .personal__number {
    border: 2px solid #262161;
    display: inline-block;
    padding: 6px;
    width: 52px;
    height: 50px;
    text-align: center;
    border-radius: 100px;
    margin-bottom: 7px;
    background-color: #fff;
}

.personal__detail__set .personal__number__active {
    border: 2px solid #278f19;
    display: inline-block;
    padding: 6px;
    width: 52px;
    height: 50px;
    text-align: center;
    border-radius: 100px;
    margin-bottom: 7px;
    background-color: #fff;
}

    .personal__detail__set .personal__number__active h3, .head__title__active, .head__title2__active {
        color: #278f19 !important;
    }

.head__title__active {
    font-size: 20px;
    line-height: 26px;
    color: #278f19;
    font-family: "GraphikMedium";
}

.head__title {
    font-size: 20px;
    line-height: 26px;
    color: #262161;
    font-family: "GraphikMedium";
}

.personal__detail__set {
    text-align: center;
    position: relative;
    z-index: 1;
}

    .personal__detail__set::after {
        position: absolute;
        content: '';
        top: 25px;
        left: 50%;
        width: 100%;
        height: 2px;
        background-color: #262161;
        z-index: -1;
    }

    .personal__detail__set.last__child::after {
        position: absolute;
        content: '';
        top: 0px;
        left: 0%;
        width: 0%;
        height: 0px;
        background-color: transparent;
        z-index: -1;
    }

.personal__detail__active {
    text-align: center;
    position: relative;
    z-index: 1;
}

    .personal__detail__active::after {
        position: absolute;
        content: '';
        top: 25px;
        left: 50%;
        width: 100%;
        height: 2px;
        background-color: #06c520;
        z-index: -1;
    }

.color__tra__a {
    color: #262161;
}

fieldset #Address {
    line-height: 13px !important;
}

@media only screen and (max-width: 768px) {
    .row.mt-4 .pn__row__re {
        display: flex;
        flex-direction: column;
    }

    .personal__detail__active {
        display: flex;
        width: 100%;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .personal__detail__set {
        display: flex;
        width: 100%;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .personal__detail__active::after {
        background-color: transparent;
    }

    .personal__detail__set::after {
        background-color: transparent;
    }
}


/* 29-07-2024 kiran Css-left: 30px; */

.cus-table-format.cmn-inner-form.mt-2.filter-box.pb-0.table-resposive .table tbody tr {
    border-bottom: 1px solid #272261;
    height: 45px;
}
/* .cus-table-format.cmn-inner-form.mt-2.filter-box.pb-0.table-resposive .table tbody tr td {
        font-size: 11px;
        list-style: 20px;
        font-family: "GraphikRegular";
        } */
.personal__detail__set .personal__number {
    border: 2px solid #262161;
    display: inline-block;
    padding: 6px;
    width: 52px;
    height: 50px;
    text-align: center;
    border-radius: 100px;
    margin-bottom: 7px;
    background-color: #fff;
}

.personal__detail__set .personal__number__active {
    border: 2px solid #278f19;
    display: inline-block;
    padding: 6px;
    width: 52px;
    height: 50px;
    text-align: center;
    border-radius: 100px;
    margin-bottom: 7px;
    background-color: #fff;
}

    .personal__detail__set .personal__number__active h3, .head__title__active, .head__title2__active {
        color: #278f19 !important;
    }

.head__title__active {
    font-size: 20px;
    line-height: 26px;
    color: #278f19;
    font-family: "GraphikMedium";
}

.head__title {
    font-size: 20px;
    line-height: 26px;
    color: #262161;
    font-family: "GraphikMedium";
}

.personal__detail__set {
    text-align: center;
    position: relative;
    z-index: 1;
}

   /* .personal__detail__set::after {
        position: absolute;
        content: '';
        top: 25px;
        left: 50%;
        width: 100%;
        height: 2px;
        background-color: #262161;
        z-index: -1;
    }*/

    .personal__detail__set::after {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        background-color: #262161;
        z-index: -1;
    }

    .personal__detail__set.last__child::after {
        position: absolute;
        content: '';
        top: 0px;
        left: 0%;
        width: 0%;
        height: 0px;
        background-color: transparent!important;
        z-index: -1;
    }

.personal__detail__active {
    text-align: center;
    position: relative;
    z-index: 1;
}

    .personal__detail__active::after {
        position: absolute;
        content: '';
        top: 25px;
        left: 50%;
        width: 100%;
        height: 2px;
        background-color: #06c520;
        z-index: -1;
    }

.col-xl-7.col-md-12.col-sm-12 #file1 {
    height: 35px;
}

.modal-footer.px-4.mt-2 .btn-1.px-4.ls-0p {
    margin-right: 12px;
}

.upd__btn {
    padding: 3px 12px;
    font-size: 13px;
    line-height: 28px;
    border: 0;
    border-radius: 3px;
    font-family: var(--theme-font2);
    background-color: var(--theme-color2);
    color: white;
}

.input-box__box {
    width: 100%;
    height: 35px;
    padding-left: 10px;
}

.btn_2 {
    text-transform: none;
}

.box__border__area {
    background-color: white;
    padding: 25px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 0px 3px 0px;
}

.dolw__color {
    color: #224979;
    font-size: 11px;
    font-family: "GraphikRegular";
}

.color__tra__a {
    color: #262161;
}

.SumoSelect.sumo_MaritalStatus {
    padding-left: 0px !important;
}

fieldset #Address {
    line-height: 13px !important;
}
