body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: left;
    background-color: #fff;
    overflow: hidden;
}

.page-wrapper {
    overflow-y: auto;
    height: calc(100vh - 81px);
    width: 100%;
    padding-top: 20px;
    /* padding-bottom: 20px; */
    padding-bottom: 0px;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #131313;
    background-color: #fff;
}

.position-absolute {
    position: absolute !important;
}

@font-face {
    font-family: "roboto_light";
    src: url(../fonts/Roboto/Roboto-Light.ttf);
}

@font-face {
    font-family: "roboto_Medium";
    src: url(../fonts/Roboto/Roboto-Medium.ttf);
}

@font-face {
    font-family: "roboto_Regular";
    src: url(../fonts/Roboto/Roboto-Regular.ttf);
}


/* * {
    font-family: "roboto";
 } */


/* loader */

.w-inline-flex {
    display: -webkit-inline-box;
}

.justify-content-between {
    justify-content: space-between;
}

.mlr_0 {
    margin-left: 0px;
    margin-right: 0px;
}

.plr_0 {
    padding-left: 0px;
    padding-right: 0px;
}

.mb_10 {
    margin-bottom: 10px !important;
}

.text-danger {
    color: #ff0000;
}

.sittmloader {
    content: url(../images/loader_sittm.gif);
    width: 15%;
    height: auto;
    margin: 0 auto !important;
    margin-top: 5%;
}

#notiificationContainer {
    visibility: visible;
    padding-top: 0%;
    text-align: center;
    height: 850px;
    margin: 0 auto;
    background: #eef9ff !important;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}


/* progress bar color */

.bgsuccess {
    background-color: #3ac47d !important
}

.bgwarning {
    background-color: #f7b924 !important
}

.bgdanger {
    background-color: #d92550 !important
}


/* progress bar color */


/* loader */

.row {
    /* margin-right: -15px;
    margin-left: -15px; */
    /* display: flex;
    flex-wrap: wrap; */
}

.mlr_8 {
    margin-left: -8px;
    margin-right: -8px;
}

.plr_8 {
    padding-left: 8px;
    padding-right: 8px;
}

.mr-3,
.mx-3 {
    margin-right: 1rem!important;
}

.mb-2,
.my-2 {
    margin-bottom: .5rem !important;
}

.float-left {
    float: left!important;
}

.text-success {
    color: #28a745!important;
}

h5 {
    font-size: 12px;
    color: #4f7cfb;
    font-weight: 600;
}

.d-none {
    display: none!important;
}

.tooltip-info {
    background: #fff;
    padding: 3px;
    height: auto;
}

input[type=date]::-webkit-calendar-picker-indicator {
    cursor: pointer;
  }
/*  */


/* START TOOLTIP STYLES */

[tooltip] {
    position: relative;
    /* opinion 1 */
}


/* Applies to all tooltips */

[tooltip]::before,
[tooltip]::after {
    text-transform: none;
    /* opinion 2 */
    font-size: .9em;
    /* opinion 3 */
    line-height: 1;
    user-select: none;
    pointer-events: none;
    position: absolute;
    display: none;
    opacity: 0;
}

[tooltip]::before {
    content: '';
    border: 5px solid transparent;
    /* opinion 4 */
    z-index: 1001;
    /* absurdity 1 */
}

[tooltip]::after {
    content: attr(tooltip);
    /* magic! */
    /* most of the rest of this is opinion */
    font-family: Helvetica, sans-serif;
    text-align: center;
    /* 
      Let the content set the size of the tooltips 
      but this will also keep them from being obnoxious
      */
    min-width: auto;
    max-width: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 1ch 1.5ch;
    border-radius: .3ch;
    box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
    background: #333;
    color: #fff;
    z-index: 1000;
    /* absurdity 2 */
}


/* Make the tooltips respond to hover */

[tooltip]:hover::before,
[tooltip]:hover::after {
    display: block;
}


/* don't show empty tooltips */

[tooltip='']::before,
[tooltip='']::after {
    display: none !important;
}


/* FLOW: UP */

[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
    bottom: 100%;
    border-bottom-width: 0;
    border-top-color: #333;
}

[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
    bottom: calc(100% + 5px);
}

[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
    left: 50%;
    transform: translate(-50%, -.5em);
}


/* FLOW: DOWN */

[tooltip][flow^="down"]::before {
    top: 100%;
    border-top-width: 0;
    border-bottom-color: #333;
}

[tooltip][flow^="down"]::after {
    top: calc(100% + 5px);
}

[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
    left: 50%;
    transform: translate(-50%, .5em);
}


/* FLOW: LEFT */

[tooltip][flow^="left"]::before {
    top: 50%;
    border-right-width: 0;
    border-left-color: #333;
    left: calc(0em - 5px);
    transform: translate(-.5em, -50%);
}

[tooltip][flow^="left"]::after {
    top: 50%;
    right: calc(100% + 5px);
    transform: translate(-.5em, -50%);
}


/* FLOW: RIGHT */

[tooltip][flow^="right"]::before {
    top: 50%;
    border-left-width: 0;
    border-right-color: #333;
    right: calc(0em - 5px);
    transform: translate(.5em, -50%);
}

[tooltip][flow^="right"]::after {
    top: 50%;
    left: calc(100% + 5px);
    transform: translate(.5em, -50%);
}


/* KEYFRAMES */

@keyframes tooltips-vert {
    to {
        opacity: .9;
        transform: translate(-50%, 0);
    }
}

@keyframes tooltips-horz {
    to {
        opacity: .9;
        transform: translate(0, -50%);
    }
}


/* FX All The Things */

[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
    animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
    animation: tooltips-horz 300ms ease-out forwards;
}


/*  */

.flex-column {
    -ms-flex-direction: column!important;
    flex-direction: column!important;
}

.nav-item.nav-item-header {
    text-transform: uppercase;
    font-size: .73333rem;
    color: #6c757d;
    font-weight: bold;
    padding: 0px;
}

.nav>li>a {
    position: relative;
    display: block;
    padding: 10px 15px;
}

.nav>li>a>img {
    max-width: none;
}

.col-pad {
    padding: 0px 15px 0px 0px;
}

.text-white {
    color: #fff!important;
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

 ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}


/* ::-webkit-scrollbar-thumb {
    background: #98cbe6;
    border-radius: 10px;
}

 ::-webkit-scrollbar-thumb:hover {
    background: #4374ff;
} */

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

thead {
    background: #fff;
    margin-bottom: 20px;
}

.table thead th {
    border: none;
}

.card {
    padding: 10px;
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
}

.tooltip-text {
    position: absolute;
    top: -27px;
    left: -17px;
    background: #000;
    padding: 3px 7px;
    border-radius: 4px;
    color: #fff;
    display: none;
    transition: all 0.3s;
    width: max-content;
    font-size: 12px;
    z-index: 9999;
}

.tooltip-text .fa {
    position: absolute;
    bottom: -12px;
    color: black;
    left: 33px;
    font-size: 19px;
}

.fa-caret-down:before {
    content: "\f0d7";
}

.custom-tooltip:hover .tooltip-text {
    display: inline-block;
}

a:focus,
a:hover {
    text-decoration: none;
}

a,
button,
.btn {
    outline: none !important;
}

.page-container {
    padding: 0px 150px;
}

.m-0 {
    margin: 0px;
}

.p-0 {
    padding: 0px !important;
}

.mb-0 {
    margin-bottom: 0px;
}

.mb_15 {
    margin-bottom: 15px;
}

.pl-10 {
    padding-left: 10px;
}

.pr-10 {
    padding-right: 10px;
}

.mt-6 {
    margin-top: 6px;
}

.plr-5 {
    padding-left: 5px;
    padding-right: 5px;
}

.plr-15 {
    padding-left: 15px;
    padding-right: 15px;
}

select.form-control {
    background-image: url(https://www.click2cloud.com/img/dropdown_icon.svg)!important;
    background-position: right 10px center!important;
    background-repeat: no-repeat!important;
    background-size: auto 50%;
    border-radius: 2px;
    border: 1px solid #c0c0c0!important;
    padding: 7px 30px 7px 10px;
    outline: none;
    -webkit-appearance: none!important;
    font-size: 12.3px;
    background-size: 15px 15px !important;
}

input {
    -webkit-writing-mode: horizontal-tb !important;
    text-rendering: auto;
    color: -internal-light-dark(black, white);
    letter-spacing: normal;
    word-spacing: normal;
    line-height: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    text-align: start;
    appearance: auto;
    -webkit-rtl-ordering: logical;
    cursor: text;
    background-color: -internal-light-dark(rgb(255, 255, 255), rgb(59, 59, 59));
    margin: 0em;
    padding: 1px 2px;
    border-width: 2px;
    border-style: inset;
    border-color: -internal-light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
    border-image: initial;
}


/* ................. Comman CSS End ................ */


/* Header Css start */

.main-header.main-tab-container {
    background: #fff;
    height: 70px;
    padding: 0px 150px;
    box-shadow: 0px 7px 10px rgb(204 204 204 / 25%);
    margin-bottom: 0px;
}

.main-header .navbar-nav>li {
    list-style-type: none;
    padding: 0 5px;
}

.main-header .notification-btn img {
    width: 22px;
}

.main-header .top-navbar .nav-item .nav-link {
    padding: 6px 16px;
    display: block;
}

.main-header .notification-count.position-absolute {
    /* width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #e12127;
    font-size: 8px;
    right: 21px;
    top: 18px;
    color: #fff;
    line-height: 15px;
    text-align: center; */
}

.main-header .navbar-brand {
    height: auto;
    padding: 0px 0px;
    margin-right: 40px;
    position: relative;
    width: 210px;
    height: 70px;
}

.main-header .navbar-brand img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-header .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
}

.main-header .navbar-nav {
    align-self: flex-end;
    height: auto;
}

.main-header .navbar-nav.mr-auto.nav {
    margin-top: 21px;
}

.main-header .top-navbar .nav-item .nav-link.active.show {
    border-bottom: 3px solid #4F71ED;
}

.main-header .top-navbar .nav-item .nav-link.show {
    border-bottom: 3px solid transparent;
}

.main-header .nav>li>a:focus,
.nav>li>a:hover {
    background-color: transparent;
}

.main-header .nav-item.dropdown .rounded-circle {
    width: 30px;
    height: 30px;
    margin-right: 0;
    border-radius: 50%;
}

.main-header .navbar-nav.justify-content-end.navbar_right_custom {
    padding: 0px 0px;
}

.main-header .navbar {
    margin-bottom: 0px;
}

.main-header .dropdown-menu.show {
    animation: fade-in2 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.main-header .otherDropdown .dropdown-item {
    border-bottom: 1px solid #fff;
}

.main-header .dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    z-index: 6;
    position: relative;
}

.main-header .dropdown-item:first-child {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}

.main-header .dropdown-item {
    display: block;
    width: 100%;
    padding: .4rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.main-header .navbar-nav .dropdown-menu {
    position: static;
    float: none;
}

.main-header .dropdown-menu.show {
    display: block;
}

.main-header .otherDropdown {
    min-width: 150px !important;
    padding: 0rem 0 !important;
    background: #F0F0F0;
    background-color: #F0F0F0 !important;
}

.main-header .dropdown-menu {
    box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 3%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 3%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
    margin: .125rem;
}

.main-header .dropdown-menu {
    position: absolute;
    top: 84%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 15rem;
    padding: .65rem 0;
    padding: 0;
    margin: .125rem 0 0;
    color: #495057;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: .25rem;
}

.main-header .dropdown-item:hover,
.main-header .dropdown-item:focus,
.main-header .pull-right .dropdown-item:active {
    color: #16181b !important;
    text-decoration: none;
    background-color: #ffffff;
}

.main-header .dropdown-item.active,
.main-header .dropdown-item:active {
    color: #fff !important;
    text-decoration: none;
    background-color: #3f6ad8;
}

.main-header .dropdown-toggle::after {
    display: inline-block;
    margin-left: .055em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.main-header .navbar-nav>li>.dropdown-menu {
    border-radius: 3px;
}

.main-header .navbar-nav>li>.dropdown-menu ul {
    padding-inline-start: 0px;
    list-style-type: none;
}

.down-arrow {
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #f0f0f0;
    position: absolute;
    right: 93px;
    top: -7px;
}

.main-header .otherDropdown .dropdown-item:last-child {
    border-bottom: 0px;
}

.main-header .main-tabs.card-header>.nav .nav-link {
    color: #404042;
    text-transform: uppercase;
    cursor: pointer;
}

.main-header .main-tabs.card-header>.nav .nav-link.active {
    color: #5C73B7 !important;
    border-bottom: 2px solid #3f6ad8;
}

.main-header .notification-nav.dropdown .dropdown-toggle::after {
    border-top: unset;
    margin: 0.155em;
}

.main-header .user-prof-dropdn .dropdown-menu {
    min-width: 300px;
    width: 300px;
    left: -242px;
    margin-top: 0px !important;
}

.main-header .user-prof-dropdn .dropdown-menu .row.m-0 {
    padding-left: 15px;
    padding-right: 15px;
}

.main-header .profile-img-container img.rounded-circle {
    width: 47px !important;
    height: 47px !important;
    margin-top: 10px;
    margin-left: 15px;
}

.main-header .profile-img-container.center {
    text-align: center;
}

.main-header .profile-img-container img {
    margin-top: 10px;
}

.main-header .user-profile-email {
    margin-top: 5px;
    font-size: 10px;
}

.main-header .divider-line {
    height: 0;
    margin: 0.8rem 0;
    overflow: hidden;
    border-top: 1px solid #f1f2f3;
}

.main-header .dropdown-user-info {
    padding-right: 15px;
}

.main-header .dropdown-user-info h5 {
    font-size: 12px;
    text-transform: capitalize;
    color: #4f7cfb;
}

.main-header .user-profile-email {
    font-size: 12px;
    font-weight: 400;
    text-transform: lowercase;
}

.main-header .user-dropdwn-img {
    width: 47px !important;
    height: 47px !important;
    margin-top: 0px !important;
    border-radius: 50% !important;
    margin-left: 15px;
}

.main-header #userProfileMenu label {
    font-size: 11px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0;
}

.main-header #userProfileMenu label span {
    padding-left: 4px;
}

.main-header .dropdown-menu-right .form-control {
    border: 1px solid #e4e5e7;
    box-shadow: unset;
}

.main-header .last_login_text {
    font-size: 11px;
    font-weight: bold;
}

.main-header .signout_btn {
    color: #4f7cfb;
    border: 0;
    font-size: 12px;
    padding: 0px 7px 5px 0px;
    font-weight: 700;
    text-transform: uppercase;
}

.main-header .divider-line1 {
    height: 0;
    margin: 0.8rem 0 0.8rem 0;
    overflow: hidden;
    border-top: 1px solid #f1f2f3;
}

.main-header #userProfileMenu label {
    margin: 0px;
    margin-top: 10px;
}

.main-header .pull-right.mobile-nav .nav-item .nav-link#ssosignin {
    padding: 0.5rem 1rem !important;
    background: #f44c76;
    margin-top: 18px;
    float: right;
    color: #fff !important;
    font-size: 14px !important;
}

.main-header .top-navbar .pull-right.mobile-nav .nav-link {
    /* padding: 1.76rem 0.8rem;
    margin-top: 5px; */
    padding: 1.9rem 0.8rem;
}

.main-header .top-navbar .pull-right.mobile-nav .nav-link:hover {
    background-color: #f7f6f3;
}


/* Notifications start */

.notification_info_div .d-flex {
    align-items: flex-start;
}

.notification_info_div {
    padding: 10px;
}

.notification_info_div .user_avatar {
    width: 40px
}

.notification_info_div p {
    font-size: 11px;
    margin-bottom: 1px;
}

.notification_info_div p span {
    font-weight: 600;
    color: #000000;
}

.notification_info_div p .text_blue {
    color: #0091FF;
}

.notification_info_div .right_section {
    margin-left: 10px;
    margin-top: 0px;
}

.notification_info_div hr {
    margin-bottom: 7px;
    margin-top: 7px;
}

.notification_info_div .btn {
    color: #ffffff;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 500;
    margin-right: 3px;
    margin-top: 0px;
    height: 23px;
    width: 85px;
    padding: 2px 10px;
}

.notification_info_div .btn.btn-primary {
    background-color: #0091FF;
    border: 2px solid #0091FF;
}

.notification_info_div .btn.btn-secondary {
    background: #6c757d;
    border-color: #6c757d;
}

.notification_info_div .status_icon {
    width: 20px;
}
.notification_info_div .cross_div
{
    position: relative;
    float: right;
    margin-right: -25px;
}
.notification_info_div .cross_div img 
{
    width: 12px;
    cursor: pointer;
}
.notification_info_div.deadline_update .btn
{
    display: block;
    margin: 3px 0px;
}
.notification_info_div.deadline_update .btn-secondary
{
    border-color: #eaeaea;
    background-color: #eaeaea;
    color: #000000;
}
.assign_task_notification li.noti_list
{
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding-right: 25px;
}
.notification_talent hr {
    margin: 0;
    margin-left: 42px;
}


/* Notifications End */


/* .........Mobile Navbar........... */

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0,0,0,0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
}


/* Header Css END */


/* body content start */

.card-head {
    font-size: 15px;
    color: #4f7cfb;
    font-weight: 600;
}

hr {
    margin-top: 1rem;
    /* margin-bottom: 1rem; */
    margin-bottom: 15px;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.input-group {
    position: relative;
    align-items: stretch;
}

.input-group-prepend {
    margin-right: -1px;
    display: flex;
    width: 100%;
    margin: 0 auto;
}

.manage-input-group {
    width: 68%;
}

.input-group {
    width: 100%;
    margin: 0 auto;
    display: flex;
    position: relative;
    align-items: stretch;
    border-collapse: separate;
}

.input-group-prepend {
    margin-right: -1px;
    display: flex;
    margin: 0 auto;
    width: unset;
}

.input-group .form-control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
    z-index: 2;
    font-size: 15px !important;
    display: inline-block;
    float: left;
}

.input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

.left_search_icon {
    width: 15px;
}

.input-group>.form-control {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
    margin-left: -1px;
    border-radius: .25rem;
    border-left: 0;
    margin-top: 0;
}

.input-group>.form-control:focus {
    border-color: #ccc;
    box-shadow: unset;
}

.search-container img {
    width: 15px;
}

.search-container .input-group-text {
    background: #fff;
}

.dashboard-no-data-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-no-data-img img {
    width: 300px;
}


/* body content End */


/* ............ Footer Css Start............. */

.footer_ms {
    padding: 10px 15px;
    background: #f2f2f2;
    border-top: 1px solid #e2e2e2;
    position: fixed;
    bottom: 0px;
    width: 100%;
    z-index: 999;
}

.footer_ms p {
    margin-top: 0;
    margin-bottom: 0rem!important;
    line-height: 1.5;
}

.footer_ms small {
    font-size: 80%;
}


/* ............ Footer Css End............. */


/*Notification Dropdown Start*/

.notification-btn img {
    width: 22px;
    padding-top: 4px;
}

.notification-count {
    /* width: 15px; */
    /* height: 15px; */
    border-radius: 50%;
    background: #e12127;
    font-size: 8px;
    right: 16px;
    top: 19px;
    color: #fff;
    line-height: 15px;
    text-align: center;
    padding: 0px 5px;
    border: 2px solid #ffffff;
}

.notification-dropdown {
    left: unset !important;
    right: -60px;
    width: 465px;
    border: none !important;
    padding: 5px 0 0 0;
    padding-top: 0px;
    position: absolute;
    top: 60px;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    text-transform: initial;
}

.notification-dropdown-header {
    background: #F0F8FF;
    border-radius: 4px 4px 0px 0px;
    padding: 10px 20px 12px 20px;
}

.notification-dropdown-header h5 {
    color: #3C446B;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

.notification-dropdown-body li:last-child .notification-media {
    border-bottom: none;
}

.notification-dropdown-body .date {
    padding: 0px;
    margin-bottom: 4px;
    font-size: 11px;
    color: #6D7278;
    font-weight: 500;
}

.notification-btn:focus,
.notification-dropdown:focus {
    outline: none !important;
}

.notification-media {
    padding: 0px 20px 10px 20px;
    border-bottom: 1px solid #E5E5E5;
}


/* .notification-dropdown-body li {
    margin-top: 10px;
} */
.notification-dropdown-body li {
    position: relative;
}
.notification_info_div .cross_div {
    position: absolute;
    bottom: 8px;
    right: 12px;
    margin-right: 0px !important;
}
.notification_info_div .cross_div img {
    width: 16px;
}
.notification-media .media-heading {
    font-size: 12px;
    color: #333333;
    font-weight: 500;
    margin-bottom: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 143px;
}

.notification-media .team-name {
    color: #4A4A4A;
    font-size: 10px;
    font-weight: 500;
    margin-bottom: 2px;
}

.notification-media .nominated-by-p {
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #4174FF;
    clear: both;
}

.notification-media .nominated-by {
    font-weight: 700;
    color: #4174FF;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    /* display: inline-block;
    vertical-align: middle; */
    width: calc(100% - 100px);
}

.notification-media .media-left img {
    width: 40px;
    border-radius: 50%;
}

.notification-media .btn {
    font-size: 12px !important;
    padding: 2px 9px !important;
    height: 28px !important;
    line-height: 17px !important;
    margin-top: 2px;
}

.notification-media .reject-talent {
    padding: 0px 13px !important;
}

.notification-media .btn_container {
    display: flex;
    padding-right: 0;
}

.notification-dropdown-body .media.notification-media {
    margin-top: 5px;
}

.notification-dropdown-body .p_0 {
    padding: 0px;
}

.mr_5 {
    margin-right: 5px;
}

.notification-dropdown-body {
    max-height: 395px;
    overflow-y: auto;
}

.notification-dropdown-body {
    max-height: 275px;
    overflow-y: auto;
}

.notification-dropdown-body::-webkit-scrollbar {
    height: 4px;
    width: 4px;
    background-color: #F5F5F5;
    border-radius: 100px;
}

.notification-dropdown-body .media-body {
    width: calc(100% - 40px);
}

.notification-dropdown-body .media-body .row.mx-0 {
    margin-top: 0px;
}

.notification-dropdown-body::-webkit-scrollbar-track {
    height: 4px;
    border-radius: 100px;
}

.notification-dropdown-body::-webkit-scrollbar-thumb {
    height: 4px;
    background-color: #CACACA;
    border-radius: 10px;
}

.notification-dropdown-body .nominate_status {
    padding: 2px 8px;
    border-radius: 25px;
    font-size: 10px;
    color: #ffffff;
    width: auto;
    font-weight: 400;
    margin-top: 3px;
}

.notification-dropdown-body .nominate_status.nominate_pending {
    background: #f8af22 !important;
}

.notification-dropdown-body .nominate_status.nominate_approved {
    background: #90C418 !important;
}

.notification-nav {
    position: relative;
    text-align: left;
}

.notification-btn::after {
    content: none;
}

.media {
    display: flex;
    align-items: flex-start;
}

.media .float-right {
    float: right;
}

/* approval_requests_notification start */
.notification-dropdown-body.approval_requests_notification .btn_group .btn
{
  display: block;
  margin: 6px 0px;
}
.notification-dropdown-body.approval_requests_notification .btn_group .btn-secondary
{
    border-color: #eaeaea;
    background-color: #eaeaea;
    color: #000000;
}
.notification-dropdown-body.approval_requests_notification .seperation
{
    padding-left: 6px;
    padding-right: 6px;
    font-weight: 300;
}
#approval_request_modal .select_talent input[type=checkbox] {
    margin: 6px 2px 0px 0px;
    cursor: pointer;
}
#approval_request_modal .select_talent
{
    margin-bottom: 10px;
}
#approval_request_modal .select_talent label {
    margin-top: 12px;
    position: absolute;
    line-height: 0;
    font-size: 12px;
    padding-left: 4px;
}
/* approval_requests_notification End */
/* #auditReportModal.modal,
#rejectnominateTalent.modal {
    background: rgb(0 0 0 / 50%);
}

#auditReportModal .modal-dialog,
#rejectnominateTalent .modal-dialog {
    width: 386px;
    top: 80px;
    margin: 10px auto !important;
}

#auditReportModal .modal-title,
#rejectnominateTalent .modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 19px;
    color: #4f7cfb;
    font-weight: 500;
}

#auditReportModal .form-group label,
#rejectnominateTalent .form-group label {
    font-weight: 400;
    color: #495057;
    font-size: 14px !important;
}

#auditReportModal .aestric,
#rejectnominateTalent .aestric {
    color: #ff0000;
}

#auditReportModal label,
#rejectnominateTalent label {
    display: inline-block;
    margin-bottom: 0.5rem !important;
}

#auditReportModal label,
#auditReportModal input,
#rejectnominateTalent label,
#rejectnominateTalent input {
    margin: 0px;
}

#auditReportModal .dateRange_container,
#rejectnominateTalent .dateRange_container {
    background-position-x: 294px;
}

#auditReportModal .close,
#rejectnominateTalent .close {
    opacity: 0.9;
}

#auditReportModal .modal-header,
#auditReportModal .modal-footer,
#rejectnominateTalent .modal-header,
#rejectnominateTalent .modal-footer {
    background: #fff !important;
    padding: 15px 30px;
    font-size: 16px;
    border: 0 !important;
}

#auditReportModal .modal-body,
#rejectnominateTalent .modal-body {
    padding: 10px 30px !important;
}

#auditReportModal .modal-dialog .close,
#rejectnominateTalent .modal-dialog .close {
    margin-top: -2px !important;
    padding: 4px 9px;
    margin: 0;
}

#auditReportModal .modal-footer button.btn-primary,
#rejectnominateTalent .modal-footer button.btn-primary {
    background-color: #4f7cfb;
    border-color: #4f7cfb;
}

#rejectnominateTalent .widget-content-wrapper {
    display: flex;
    flex: 1;
    position: relative;
    align-items: center;
}

#rejectnominateTalent .widget-heading {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #495057;
}

#rejectnominateTalent .widget-heading {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #495057;
}

#rejectnominateTalent .mt-15 {
    margin-top: 15px;
}

#rejectnominateTalent .form-group label,
#rejectnominateTalent .manager-label {
    color: #333 !important;
    font-weight: 700 !important;
} */


/* Audit Report pop up end  */


/* .... TalentRemove pop up .... */


/* .remove_talent_modal .form-group label,
.remove_talent_modal .manager-label {
    color: #333 !important;
    font-weight: 700 !important;
}

#TalentRemove .form-group label {
    font-size: 14px !important;
}

#TalentRemove.remove_talent_modal .form-group {
    margin-top: 15px;
    margin-bottom: 15px;
} */

.profile-change-pass {
    font-size: 11px;
}


/* user profile section start */

.m_lr_5 {
    margin-left: -5px;
    margin-right: -5px;
}

.p_lr_5 {
    padding-left: 5px;
    padding-right: 5px;
}

.m_lr_10 {
    margin-left: -10px;
    margin-right: -10px;
}

.p_lr_10 {
    padding-left: 10px;
    padding-right: 10px;
}

.p_20 {
    padding: 20px;
}

.d-flex {
    display: flex;
}

.c2c_search_input .form-control {
    margin: 10px 0px;
    font-size: 12px;
    padding: 3px 10px;
    height: 30px;
    padding-left: 30px;
}

.c2c_search_input img {
    float: left;
    width: 13px;
    margin-top: -31px;
    margin-left: 10px;
}

.custom_rnd_btn {
    background-color: #0091FF;
    border: 2px solid #0091FF;
    color: #ffffff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 14px;
    width: 155px;
    margin-top: 0px;
}

.custom_rnd_btn:hover, .custom_rnd_btn_outline:hover {
    background-color: #035fa5;
    border: 2px solid #035fa5;
    color: #ffffff;
}
.custom_cancel_btn
{
    background-color: #6c757d;
    border: 2px solid #6c757d;
}
.custom_cancel_btn:hover
{
    background-color: #52575b;
    border: 2px solid #52575b;
    color: #ffffff;
}
.custom_rnd_btn_outline {
    background-color: #0091FF;
    border: 2px solid #0091FF;
    color: #ffffff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 14px;
    width: 155px;
    margin-top: 0px;
}

.card_container {
    border: 1px solid rgb(128 128 128 / 50%);
    border-radius: 6px;
    padding: 10px 12px;
}

.user_profile .d_space_bet {
    display: flex;
    justify-content: space-between;
}

.user_profile .profile_detail .img-sec {
    width: 70px;
    height: 70px;
    position: relative;
    border-radius: 50%;
    /* margin-right: 15px; */
}

.user_profile .img-sec img {
    position: absolute;
    width: 100%;
    height: 94%;
    border-radius: 50%;
}

.user_profile .profile_detail .info-sec {
    height: 70px;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    width: calc(100% - 70px);
    margin-left: 10px;
}

.user_profile .profile_detail .info-sec h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.user_profile .profile_detail .info-sec h6 {
    margin: 0;
    font-size: 16px;
    margin-top: 3px;
    margin-bottom: 3px !important;
    color: #131313;
    display: -webkit-box;
    max-height: 35px;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 1;
}

.user_profile .profile_detail .info-sec p {
    margin: 0;
    font-size: 14px;
    color: #131313;
    display: -webkit-box;
    max-height: 35px;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 1;
}

.user_profile .profile_info .table tbody tr:first-child td {
    border-top: 0px solid #C3DFFF;
}

.user_profile .profile_info .table>tbody>tr>td {
    padding: 8px 0px;
    border-top: 1px solid #C3DFFF;
    color: #131313;
    font-size: 13px;
}

.user_profile .profile_info .card-body {
    overflow: auto;
}

.user_profile .profile_info .card-body .table {
    margin-bottom: 0px;
}

.user_profile .profile_detail .hieranchy_icon {
    width: 24px;
    margin-right: 0px;
    cursor: pointer;
}

.user_profile .profile_info {
    border-radius: 0px;
    border-top: 1px solid #DCD9D3;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    height: calc(50vh - 91px);
}

.user_profile .profile_info .user_table_head {
    width: 25%;
    white-space: nowrap;
}

.user_profile .profile_info .td-semicolon {
    width: 5%;
}

.user_profile .profile_info .user_table_desc {
    width: 70%;
}

.user_profile .icon_change_img {
    position: absolute;
    top: 34px;
    left: 45px;
    color: #000000;
    cursor: pointer;
    background: #ffffff;
    border-radius: 50%;
    border: 1px solid rgb(128 128 128 / 50%);
    padding: 2px;
}

.profile_info .readOnlyProf input {
    border: 1px solid #949494;
    background: transparent!important;
    display: inline-flex;
    margin: 0px;
    padding: 3px 5px;
    border-radius: 3px;
    width: 100%;
    color: #000000;
}

.profile_info .readOnlyProf input[disabled] {
    border: 1px solid transparent;
    padding-left: 0px;
}

.profile_info .readOnlyProf select[disabled] {
    border: 1px solid transparent;
    padding: 3px 0px;
}

.profile_info .readOnlyProf select {
    border: 1px solid #949494;
    background: transparent;
    display: inline-flex;
    margin: 0px;
    padding: 3px 5px;
    border-radius: 3px;
    width: 100%;
    color: #000000;
}

.profile_info ::-webkit-input-placeholder {
    /* Edge */
    color: #131313;
}

.profile_info :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #131313;
}

.profile_info ::placeholder {
    color: #131313;
}

.profile_info select:disabled {
    color: #000000 !important;
    opacity: 1;
}

.manager_profile_col .user_profile .profile_detail .info-sec h3 {
    font-size: 15px;
}

.manager_profile_col .user_profile .profile_detail .info-sec h6 {
    font-size: 12px;
    margin-top: 5px;
}

.manager_profile_col .user_profile .profile_detail .img-sec {
    width: 60px;
    height: 60px;
}

.manager_profile_col .user_profile .profile_detail .info-sec p {
    font-size: 12px;
}

.manager_profile_col .user_profile .profile_detail .info-sec {
    height: 60px;
}


/* .smml_page .indivisual_card_page .card.card_container.profile_info
{
    height: unset !important;
} */

.smml_page .user_profile .card.card_container.profile_info {
    height: calc(100vh - 272px) !important;
}


/* user profile section end */

.search-container .form-control {
    background-color: #f0f8ff;
    border: 1px solid #C4C4C4;
    border-left: 0;
    border-radius: 4px;
    font-size: 12px !important;
}

.search-container .input-group>.input-group-prepend>.input-group-text {
    border-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #f0f8ff;
    border: 1px solid #C4C4C4;
}


/* project and Timesheet css start */

.export_report_btn {
    background-color: #ffffff;
    color: #6F64F8;
    border: 2px solid #6F64F8;
    border-radius: 20px;
    font-size: 12px;
    height: 34px;
    font-weight: 500;
}
.export_report_btn:hover 
{
    background-color: #6F64F8;
    color: #ffffff;
}

.card_container .sec_head,
.sec_head {
    margin: 0px;
    font-size: 15px;
    font-weight: 500;
}

.card_container .sec_head span {
    color: #777777;
}

.user_profile .d_space_bet {
    margin-bottom: 15px;
}


/* ..... */

.profile_detail {
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    border-bottom: 0 !important;
}

.profile_detail .dropdown .btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    padding-top: 4px;
    margin-left: 35px;
}

.profile_detail .dropdown .btn img {
    width: 4px;
    transform: rotate(90deg);
    filter: invert(70%);
    opacity: 0.8;
}

.profile_detail .dropdown .dropdown-menu {
    transform: translate3d(-79px, 32px, 0px) !important;
    min-width: 97px !important;
    padding: 0px;
}

.profile_detail .dropdown .dropdown-menu li {
    background: #0091FF;
    padding: 6px 10px;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    cursor: pointer;
}
.profile_detail .dropdown .dropdown-menu li:hover 
{
    background: #035fa5;
}

.profile_detail .progress {
    margin-bottom: 0px;
    height: 8px;
    margin-top: 7px;
    background-color: #e4e4e4!important;
}

.profile_detail .progress_div {
    margin-top: 5px;
}

.profile_detail .progress-bar {
    background-color: #13D7DE;
}

.profile_detail .progress_div span {
    font-weight: 600;
    font-size: 13px;
}


/* ..... */

.profile_graph {
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
}

.profile_graph h4,
.project_list h4,
.skills_list h4 {
    font-weight: 600;
    font-size: 13px;
    margin: 0;
}

.profile_graph select.form-control,
.project_list select.form-control {
    width: 89px;
    float: right;
    border: 1px solid #C0C0C0 !important;
    background-color: #F0F8FF !important;
    border-radius: 3px;
    padding: 0 8px;
    height: 25px;
    font-weight: 600;
    font-size: 11px;
    color: #000000;
    margin-bottom: 10px;
}

.profile_graph .card-body {
    overflow: auto;
}


/* ..... */

.profile_resourse_graph .card-body {
    height: 100px;
    overflow: auto;
    margin-top: 254px;
}


/* .. objectives container Start .. */


/* .objectives_container .card-body
{
    margin-top: 10px;
    height: calc(100vh - 249px);
    overflow: auto;
    margin-right: -7px;
    overflow-x: hidden;
} */

.objectives_container .scroll_objective_list {
    padding-right: 0px;
}

.objectives_container .objectives_text .obj_year {
    font-weight: 700;
    font-size: 13px;
    margin: 0;
    margin-top: 0px;
    display: block;
}

.objectives_container .year_filter {
    width: 20px;
    cursor: pointer;
}


/* Filter btn */

.objective_filter {
    padding: 5px 15px;
}

.objective_filter ul {
    padding-inline-start: 0px;
    margin-bottom: 0px;
}

.objective_filter ul p {
    margin-bottom: 5px;
    font-size: 11px;
    font-weight: 600;
}

.objective_filter ul .custom-control-label {
    font-weight: 600;
    font-size: 11px;
    margin-bottom: 3px;
}

.objective_filter li {
    padding-left: 17px;
    list-style-type: none;
}

.objective_filter .custom-control input,
.objective_filter .custom-control label {
    cursor: pointer;
}

.filter_dropdown {
    position: relative;
}


/* ...objectives_data start.. */

.objectives_data .card_header_div {
    padding: 3px 0px;
    border: 0;
}

.objectives_data .card_header_label {
    margin-top: 15px !important;
}

.objectives_data .card_header_div .card_label,
.objectives_data .card-header .card_label {
    font-size: 11px;
}

.objectives_data .table_content_scroll .card {
    margin-bottom: 0px;
    margin-top: 0px;
    padding-left: 47px;
    /* background-color: #F0F8FF; */
    border: none;
    padding: 12px 0px;
    border-radius: 6px;
}


/* .objectives_data .table_content_scroll .card .icon_wrapper
{
    position: absolute;
    left: 11px;
} */

.objectives_data .table_content_scroll .card .card_arrow.collapsed {
    transform: rotate(-90deg);
}

.objectives_data .table_content_scroll .card .card_arrow {
    width: 17px;
    transform: rotate(0deg);
    transition: 0.5s;
    margin-right: 5px;
}

.objectives_data .table_content_scroll .card .user_icon {
    width: 12px;
}

.objectives_data .table_content_scroll .card .col_first {
    position: relative;
    margin-top: -19px;
    margin-left: 25px;
}

.objectives_data .table_content_scroll .card .obj_name {
    /* color: #0078D4; */
    font-weight: 500;
    font-size: 13px;
    margin-bottom: 3px;
    padding-right: 10px;
    display: -webkit-box;
    max-height: 35px;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 1;
}

.objectives_data .small_text {
    color: #131313;
    font-size: 12px;
}

.objectives_data .bold_black {
    font-size: 12px;
    color: #000000;
    font-weight: 600;
    width: 100%;
}

.objectives_data .text_seperator {
    color: #B8B8B8;
    padding-left: 4px;
    padding-right: 4px;
}

.objectives_data .pl_15 {
    padding-left: 10px;
}

.objectives_data .table_content_scroll .status_img {
    width: 10px;
    margin-right: 4px;
}

.objectives_data .closed_task .card {
    background-color: #D9EDFF;
}

.objectives_data .not_started_task .card {
    background-color: #FFF5DB;
}

.objectives_data .card .text_blue {
    /* color: #0078D4; */
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}

.objectives_data .in_progress_task .card {
    background-color: #D8FFDC;
}

.objectives_data .collapse .card {
    border-top: 1px solid rgb(128 128 128 / 50%);
}

.objectives_data .in_progress_task .collapse .card {
    background-color: #ECF8ED;
}

.objectives_data .collapse .card {
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.objectives_data .in_progress_task .card .m_0 {
    margin-left: 0px;
    margin-right: 0px;
}

.objectives_data .in_progress_task .card .p_0 {
    padding-left: 0px;
    padding-right: 0px;
}

.objectives_data .in_progress_task .card .text_blue {
    color: #000000;
}

.objectives_data .card_parent {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}


/* .objectives_data .in_progress_task .card
{
    background-color: #f7f6f3;
} */

.objectives_data .in_progress_task .card .text_blue {
    color: #000000;
}

.objectives_data .closed_task .collapse .card {
    background-color: #F0F8FF;
}


/* .objectives_data .in_progress_task.active_border {
    border: 2px solid #b0e538;
    border-radius: 4px;
}

.objectives_data .not_started_task.active_border,
.objectives_data .closed_task.active_border {
    border: 2px solid #0078D4 !important;
    border-radius: 4px;
} */


/* .objectives_data .accordion .card_parent
{
    border: 1px solid #7F7F7F;
    
} */

.objectives_data .in_progress_task.active_border {
    background-color: #D8FFDC;
}

.objectives_data .accordion {
    margin-bottom: 10px;
}

.objectives_data .col_space {
    padding-left: 36px;
}


/* .objectives_data .collapse .card {
    padding: 0px 0px 10px 0px;
} */

.objectives_data .card_wrappper {
    border: 1px solid rgb(128 128 128 / 50%);
    border-radius: 6px;
}

.objectives_data .collapse .card p {
    font-size: 11px;
    margin-bottom: 0px;
}

.objectives_data .collapse .card .justify-content-between, 
.accordion .card .justify-content-between {
    padding-right: 10px;
}

.objectives_data .collapse .card .text_blue {
    font-size: 11px !important;
    font-weight: bold;
}

.objectives_data .dot {
    width: 8px;
    height: 8px;
    background: #7F7F7F;
    border-radius: 50%;
    position: absolute;
    left: 16px;
    margin-top: 3px;
}


/* .objectives_data .collapse .card .border_bottom {
    border-bottom: 1px solid #DCDCDC;
    width: calc(100% - 60px);
    margin: 0 auto;
} */

.objectives_data .collapse .card:last-child .border_bottom {
    border-bottom: none;
}

.objectives_data .collapse .card .pt_10 {
    padding-top: 10px;
    transition: 1s;
}

.objectives_data .table_content_scroll {
    max-height: calc(100vh - 270px);
    overflow: auto;
    overflow-x: hidden;
    padding-right: 5px;
    margin-right: -7px;
}

.objectives_data .table_content_scroll .accordion {
    padding-right: 0px;
}

.objectives_data .table_content_scroll .collapse .custom_div_scroll {
    max-height: 210px;
    overflow: auto;
}


/* .objectives_data .table_content_scroll .collapse.show 
{
    border-bottom: 2px solid #0091ff;
} */

.objectives_data .table_content_scroll .collapse {
    visibility: visible;
}
.objectives_data pre
{
    padding: 0;
    background-color: transparent;
    border: 0px solid transparent;
    word-wrap: unset !IMPORTANT;
    word-break: unset;
    width: 100%;
    overflow: auto;
    overflow-x: hidden;
    margin: 0;
    white-space: break-spaces;
}

/* ..... Review popup start ..... */

.review_modal.custom_sidebar_popup {
    height: 100%;
    width: 0px;
    position: fixed;
    z-index: 3;
    top: 72px;
    right: 0px;
    background-color: rgb(255, 255, 255);
    overflow: hidden;
    box-shadow: rgba(136, 136, 136, 0.1) -6px 0px 5px -2px;
    transition: all 0.5s ease 0s;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.review_modal .modal-body {
    height: calc(100vh - 146px);
    overflow: auto;
}

.review_modal.width_41 {
    width: 41%;
}

.review_modal .btn {
    background: #0091FF;
    border-color: #0091FF;
    width: 100%;
    border-radius: 18px;
    font-size: 12px !important;
    height: 34px !important;
    font-weight: 500;
}

.review_modal .modal-header {
    border-bottom: none;
}

.review_modal .review_form .btn,
.c2cttm_modal.review_modal .btn-primary:active:focus {
    width: 217px !important;
    float: right;
    margin: 0;
    margin-bottom: 10px;
}

.review_modal .review_form .card.card-body {
    width: 100%;
}

.review_modal .review_form .c2c_forn_control {
    border: 0px solid transparent !important;
    background-color: #EAEAEA;
    border-radius: 4px;
    cursor: text;
    min-height: 34px;
    width: 100%;
    font-size: 12px;
    color: #333333;
    padding: 0px 6px;
    margin: 0px;
}

.c2cttm_modal .c2c_forn_control_textarea {
    border: 0px solid transparent !important;
    background-color: #EAEAEA;
    border-radius: 4px;
    cursor: text;
    width: 100%;
    font-size: 12px;
    color: #333333;
    /* resize: vertical; */
}
.add_new_hire_modal textarea.form-control {
    height: 65px !important;
}
.c2cttm_modal textarea.form-control {
    height: auto;
}

.c2cttm_modal form {
    display: contents;
}

.c2cttm_modal .extension_text {
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    color: #0091FF;
}
.c2cttm_modal .extension_text:hover 
{
    color: #035fa5;
}

.btn_extension {
    float: right;
    background: none;
    border: none;
    margin-bottom: 10px;
}

.review_modal .review_form .c2c_forn_control_textarea::placeholder {
    color: #333333 !important;
}

.review_modal .input-group .input-group-text {
    background-color: #eaeaea;
    border: 1px solid #eaeaea;
    border-radius: 0;
    position: absolute;
    right: 22px;
    z-index: 999;
    margin-top: 7px;
}

.review_modal .input-group .c2c_forn_control_textarea {
    margin: 0;
    border: none !important;
    font-size: 11px !important;
}

.review_modal .fa-star {
    color: #7F7F7F;
}

.review_modal .fa-star.active {
    color: #FFC600;
}

.review_modal .fa-star-half-alt.active {
    color: #FFC600;
}

.review_modal .fa-star:hover {
    color: #FFC600;
    cursor: pointer;
}

.review_modal .input-group .line_seperator {
    color: #bdbdbd;
    background: #eaeaea;
    padding-right: 7px;
    padding-top: 7px;
}

.review_modal .submit_review_btn,
.review_modal .submit_review_btn:hover {
    background: #fff !important;
    color: #0091FF !important;
    border: 2px solid #0091FF !important;
}

.review_modal .review_list .modal-title {
    margin: 0px;
    font-size: 18px;
    font-weight: bold;
    line-height: 21px;
    margin-bottom: 30px !important;
}

.review_modal .review_list .card .text_blue {
    color: #0078D4;
    font-weight: 500;
    font-size: 11px;
    margin-bottom: 2px;
}

.review_modal .review_list .card .text_gray {
    font-size: 12px;
    color: #373A3D;
    margin-bottom: 0;
}

.review_modal .review_list .card .text_para {
    font-size: 11px;
    color: #373A3D;
}

.review_modal .review_list .card {
    border: none;
    margin-bottom: 10px;
}

.review_modal .review_list .card.q4 {
    background-color: #FBF1DD;
}

.review_modal .review_list .card.q3 {
    background-color: #DDFBEB;
}

.review_modal .review_list .card.q2 {
    background-color: #DDF1FB;
}

.review_modal .review_list .card.q1 {
    background-color: #F9EAFC;
}

.review_modal .review_list .card .speaker_icon {
    position: absolute;
}

.review_modal .review_list .card .col_1 {
    padding-left: 35px;
}

.review_list .scroll_div {
    max-height: calc(100vh - 252px);
    overflow-y: auto;
    overflow-x: hidden;
    margin-right: -7px;
}

.review_list .scroll_div .card {
    margin-right: 5px;
}

.review_modal .collapse {
    visibility: visible;
}

.review_modal .m_0 {
    margin-left: 0px;
    margin-right: 0px;
}

.review_modal .p_0 {
    padding-left: 0px;
    padding-right: 0px;
}

.page_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 20%);
    z-index: 2;
    display: none;
}


/* ..... Review Popup end ..... */


/* .. objectives container End .. */


/* project and Timesheet css end */


/* Modal css start */

.c2cttm_modal.modal {
    --bs-modal-zindex: 1050;
    --bs-modal-width: 30%;
    --bs-modal-padding: 1rem;
    --bs-modal-margin: 0.5rem;
    --bs-modal-color: ;
    --bs-modal-bg: #fff;
    --bs-modal-border-color: var(--bs-border-color-translucent);
    --bs-modal-border-width: 1px;
    --bs-modal-border-radius: 0.5rem;
    --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --bs-modal-inner-border-radius: calc(0.5rem - 1px);
    --bs-modal-header-padding-x: 1rem;
    --bs-modal-header-padding-y: 1rem;
    --bs-modal-header-padding: 1rem 1rem;
    --bs-modal-header-border-color: var(--bs-border-color);
    --bs-modal-header-border-width: 1px;
    --bs-modal-title-line-height: 1.5;
    --bs-modal-footer-gap: 0.5rem;
    --bs-modal-footer-bg: ;
    --bs-modal-footer-border-color: var(--bs-border-color);
    --bs-modal-footer-border-width: 1px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-modal-zindex);
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.c2cttm_modal .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
}

.c2cttm_modal .modal-content {
    width: 100%;
}

.c2cttm_modal .modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.c2cttm_modal .modal-dialog {
    position: relative;
    /* width: auto; */
    margin: var(--bs-modal-margin);
    pointer-events: none;
    margin: 0 auto;
}

.c2cttm_modal .modal-header,
.c2cttm_modal .modal-footer {
    padding: 20px;
}

.c2cttm_modal .modal-body {
    padding: 10px 20px;
}

.c2cttm_modal .text_highlight {
    font-size: 15px;
    color: #0091FF;
    font-weight: 600;
    margin: 0;
}

.c2cttm_modal .text_dark {
    font-size: 13px;
    color: #000000;
    font-weight: 600;
    margin: 0;
}

.c2cttm_modal .text_paragraph {
    margin-bottom: 5px;
    font-size: 12px;
}

.c2cttm_modal .modal-body .widget-content-left img {
    border-radius: 50%;
}

.select2-dropdown {
    z-index: 1056;
}

.c2cttm_modal .modal-header .modal-title {
    margin: 0px;
    font-size: 18px;
    font-weight: bold;
    line-height: 21px;
}

.c2cttm_modal .modal-header .btn-close {
    float: right;
    margin-top: 3px;
    cursor: pointer;
}

.c2cttm_modal .indivisual_card_page .select2-container {
    min-width: auto !important;
}

.c2cttm_modal .select2-container .select2-search--inline .select2-search__field {
    margin-bottom: 0px;
    font-size: 12px;
    margin-top: 9px;
    min-width: 250px !important;
}

.c2cttm_modal .indivisual_card_page .select2-container--default .select2-selection--multiple {
    border-width: 1px;
    border: 0px solid transparent !important;
    background-color: #EAEAEA;
}

.c2cttm_modal .select2-container .select2-selection--multiple {
    min-height: 34px;
}

.c2cttm_modal .indivisual_card_page label {
    margin-left: 0px;
}

.c2cttm_modal .c2cttm_input {
    margin: 0px;
    border: 0px solid transparent !important;
    background-color: #EAEAEA;
    padding: 10px;
    border-radius: 4px;
    font-size: 12px;
    height: 38px;
}

.c2cttm_input {
    margin: 0px;
    background-color: #F7F6F3;
    padding: 10px;
    border-radius: 4px;
    font-size: 12px;
}

.c2cttm_modal .c2cttm_input.calender_input {
    font-size: 11px !important;
}

.c2cttm_modal .input-group-addon img {
    width: 11px !important;
}

.c2cttm_modal .custom_ftr_btn,
.c2cttm_modal .btn-primary
 {
    background: #0091FF;
    border-color: #0091FF;
    width: 100%;
    border-radius: 18px;
    font-size: 12px !important;
    height: 34px !important;
    font-weight: 500;
}
.c2cttm_modal .btn-primary:hover,
.c2cttm_modal .btn-primary:active:focus,
.c2cttm_modal .btn-primary:active:hover
{
    background: #035fa5;
    border-color: #035fa5;
}

.c2cttm_modal .btn-secondary,
.c2cttm_modal .btn-danger {
    width: 100%;
    border-radius: 18px;
    font-size: 12px !important;
    height: 34px !important;
    font-weight: 500;
}

.c2cttm_modal .modal-footer {
    padding-top: 0px;
    border-top: 0px;
}

.c2cttm_modal .access_control_page .menu_list_sec .smml_left_section_inner {
    max-height: calc(100vh - 726px);
}

.c2cttm_modal .alert-msg {
    color: #b91f44;
    font-size: 12px;
    margin-top: 2px;
    margin-bottom: 5px;
}


/* ..Modal css End.. */


/* ..... */


/* .custom_div_scroll::-webkit-scrollbar */

::-webkit-scrollbar {
    width: 3px;
    height: 4px;
}

::-webkit-scrollbar-thumb {
    background: #cacaca;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #f0efef;
    border-radius: 10px;
}


/* ..... */

.back_text {
    font-size: 14px;
    color: #4f7cfb;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    cursor: pointer;
}

.back_text .back-icon {
    margin-right: 5px;
    width: 17px;
}


/* ..... */


/* Mobile device */

.modal .modal-footer .btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.modal .modal-footer button.btn {
    font-size: 15px;
    padding: 4px 30px;
    height: 38px;
    line-height: 20px;
}

.data_range_loader {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 5px;
    margin-top: -26px;
}


/* .............................. */

#addRevisedJustification .modal_label {
    font-weight: 400;
    color: #495057;
    font-size: 14px !important;
    margin-left: 0;
}

#addRevisedJustification label {
    font-weight: 400;
}

#addRevisedJustification.global_sm_modal .modal-sm {
    max-width: 386px;
    width: auto !important;
    margin: 10px auto !important;
    margin-top: 90px !important;
}

#addRevisedJustification.global_sm_modal .modal-header,
#addRevisedJustification .modal-footer {
    background: #ffffff!important;
    color: #4374ff!important;
    border: none !important;
}

#addRevisedJustification.global_sm_modal .modal-header,
#addRevisedJustification .modal-footer {
    padding: 15px 30px !important;
}

#addRevisedJustification.global_sm_modal .modal-body {
    padding: 10px 30px 22px 30px !important;
}

#addRevisedJustification.global_sm_modal h5 {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 17px;
    color: #4f7cfb;
    font-weight: 400;
}

#addRevisedJustification textarea.modal_input {
    height: 90px !important;
    overflow-y: auto;
    resize: none;
}

#addRevisedJustification.global_sm_modal .modal-footer {
    justify-content: flex-end;
}

#addRevisedJustification .btn-primary {
    color: #fff;
    background-color: #4175ff;
    border-color: #4175ff;
}

#addRevisedJustification .modal-header .close {
    margin-top: -23px;
    opacity: 1;
}

#addRevisedJustification .widget-content-wrapper {
    display: flex;
    flex: 1;
    position: relative;
    align-items: center;
}

#addRevisedJustification .widget-subheading {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #495057;
}

#addRevisedJustification .form-group label {
    color: #333 !important;
    font-weight: 700 !important;
}

#addRevisedJustification .form-group {
    margin-top: 15px;
}

.btn_approved,
.btn_approved:hover {
    color: #ffffff;
    background-color: #02b976;
    border: 1px solid #02b976;
}

.btn_rejected,
.btn_rejected:hover {
    color: #ffffff;
    background-color: #e01f20;
    border: 1px solid #e01f20;
}

.btn_pending,
.btn_pending:hover {
    color: #ffffff;
    background-color: #f8af22;
    border: 1px solid #f8af22;
}

.media-body .d_flex {
    display: flex;
}

.notification-media .need_justi_btn {
    font-size: 10px !important;
    padding: 6px 6px !important;
    height: auto !important;
    line-height: 100% !important;
    margin-left: 10px;
}

.notification-media .status_span {
    font-size: 10px;
    padding-left: 6px;
    font-weight: 500;
}


/* ..... Media Query ..... */


/* .... TalentRemove pop up .... */


/* .... hieranchy_view of Organasation Start .... */

.team_chart {
    margin-top: 30px;
}

.row.justify_center {
    justify-content: center;
}


/* .team-col.hieranchy_view .team_chart .member_list_container
{
    width: 80%;
    margin: 0 auto;
} */

.team-col.hieranchy_view .team_chart .member_list_container .row.justify_center {
    display: flex;
    flex-wrap: wrap;
}

.team-col.hieranchy_view .team_chart .bg_white {
    background-color: #ffffff;
    margin-top: 11px;
    margin-bottom: 4px;
    padding: 10px;
    cursor: pointer;
    border: 2px solid #ffffff;
}

.team-col.hieranchy_view .team_chart .bg_white:hover,
.team-col.hieranchy_view .team_chart .bg_white.card_active {
    border: 2px solid #507dfb;
}

.team-col.hieranchy_view .team_chart .managerial_card .bg_white {
    margin-top: 0px;
    margin-bottom: 20px;
    padding: 14px 10px;
}

.team-col.hieranchy_view .team_chart .managerial_card .bg_white::after {
    content: '';
    position: absolute;
    /* bottom: 0px; */
    left: 50%;
    border-left: 1px solid #bdbdbd;
    width: 0;
    height: 20px;
    margin-top: 16px;
}

.team_chart h4 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding-right: 8px;
    height: 16px;
}

.team_chart p {
    margin-bottom: 0px;
    font-size: 11px;
    color: #656565;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding-right: 8px;
}

.team_chart .managerial_card p {
    font-size: 12px;
}

.user_img_div {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    float: right;
}

.user_img_div img {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.right_section .user_profile .card .team_chart .managerial_card .bg_white .user_img_div p,
.right_section .user_profile .member_card_plr .user_img_div p {
    font-weight: 600;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 0 0px;
    padding-right: 0px;
}
.right_section .user_profile .card .team_chart .managerial_card .bg_white .user_img_div p {
    background: #0091FF;
}

.right_section .user_profile .member_card_plr:nth-child(1n) .user_img_div p{
    background: #B0E538;
}

.right_section .user_profile .member_card_plr:nth-child(2n) .user_img_div p{
    background: #9AB4FC;
}

.right_section .user_profile .member_card_plr:nth-child(3n) .user_img_div p{
    background: #FDD836;
}

.right_section .user_profile .member_card_plr:nth-child(4n) .user_img_div p{
    background: #FF9EA2;
}

.right_section .user_profile .member_card_plr:nth-child(5n) .user_img_div p{
    background: #86D8FE;
}

.right_section .user_profile .member_card_plr:nth-child(6n) .user_img_div p{
    background: #FC9AED;
}

.right_section .user_profile .member_card_plr:nth-child(7n) .user_img_div p{
    background: #FECC86;
}

.right_section .user_profile .member_card_plr:nth-child(8n) .user_img_div p{
    background: #8CBABB;
}

.team_chart .managerial_card .col-md-4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    border-left: 1px solid #bdbdbd;
    width: 0;
    height: 20px;
}

.team-col.hieranchy_view {
    /* background-color: #F5F5F5; */
    background-color: #f0f8ff;
}

.team-col.hieranchy_view .hieranchy_back_icon {
    width: 20px;
    cursor: pointer;
}

.team-col.hieranchy_view .team_chart .member_list {
    padding-left: 7.5px;
    padding-right: 7.5px;
    height: calc(100vh - 305px);
    overflow-y: auto;
    overflow-x: hidden;
}


/* .... hieranchy_view of Organasation End .... */

.user_profile .profile_detail .dropdown .btn {
    margin: 0;
    margin-left: 11px;
}


/* Graph No data Found */

.no_data_found {
    justify-content: center;
    display: flex;
}

.no_data_image {
    width: 160px;
}

.email_id_lowercase {
    text-transform: lowercase;
}

#menuid3 {
    display: none !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    position: relative;
    background: url(https://www.click2cloud.com/img/dropdown_icon.svg);
    background-repeat: no-repeat;
    /* background-position-x: 282px; */
    background-position: calc(100% - 10px) 13%;
    /* background-size: contain; */
    background-size: 17px 36px;
}

.select2-container--disabled .select2-selection--multiple .select2-selection__rendered {
    background: unset;
}
.managerview_page .formSectionprofile .manager-block .float-right
{
    margin-top: 10px;
}
/* .select2-container--default .select2-selection--multiple .select2-selection__clear {
    margin-right: 21px;
} */


/* ..............Media Query start............... */

@media (max-width:768px) {
    .navbar-collapse.collapse {
        display: none !important;
    }
    .navbar-collapse.collapse.show {
        display: block !important;
    }
    .main-header .navbar-nav>li {
        width: 100%;
    }
    .main-header .navbar-nav.justify-content-end.navbar_right_custom {
        min-width: 100%;
    }
    .main-header .navbar-collapse .card-header-tab,
    .pull-right.mobile-nav {
        margin-left: -16px;
        margin-right: -16px;
    }
    .main-header .navbar-nav>li>.dropdown-menu {
        border: 1px solid #dddddd !important;
    }
    .pull-right.mobile-nav {
        margin: 0;
        padding: 0 !important;
    }
    .profile-change-pass {
        padding-left: 15px;
    }
}
/* ................................. */
@media only screen and (min-width:240px) and (max-width:768px) {
    .pull-right {
        float: left !important;
    }
    .main-header .navbar-nav.mr-auto.nav {
        margin-top: 0px;
    }
    .main-header .navbar-collapse {
        margin-top: 68px;
        margin-left: -16px;
        margin-right: -16px;
        box-shadow: 0 2px 5px #0000004d;
        background: #ffffff;
        position: absolute;
        width: calc(100% + 32px);
        z-index: 999;
    }
    .main-header .navbar-collapse .card-header-tab {
        padding: 0 16px;
    }
    .notification-dropdown.dropdown-menu {
        overflow: auto;
        max-height: 230px;
    }
    .notification-dropdown {
        width: 100%;
        width: 94%;
        margin: 0 auto !important;
    }
    .pull-right.mobile-nav {
        padding: 0 16px;
        width: 100%;
    }
    .navbar-nav.justify-content-end.navbar_right_custom {
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .main-header .top-navbar .pull-right.mobile-nav .nav-link {
        padding: 6px 16px;
        margin-top: 0;
    }
    .navbar-nav.mr-auto.nav {
        margin-bottom: 0px;
    }
    .dropdown-menu.dropdown-menu-right {
        position: unset !important;
        width: 100% !important;
        float: left !important;
        border: 0;
    }
    .dropdown-menu.dropdown-menu-right .col-xs-3.profile-img-container {
        display: none;
    }
    .main-header .dropdown-user-info {
        padding-left: 15px;
    }
    .main-header .dropdown-menu {
        box-shadow: unset;
    }
    .main-header .main-tabs.card-header>.nav .nav-link.active {
        border-bottom: 1px solid #3f6ad8;
    }
    .main-header .notification-count.position-absolute {
        left: 30px;
        top: 0px;
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    .pull-right.mobile-nav {
        padding-bottom: 5px !important;
    }
    .navbar-nav {
        margin: 0px;
    }
    .page-container,
    .main-tab-container {
        padding: 0px 15px !important;
    }
    /* .nav-logo {
        width: 170px !important;
        margin-top: 5px;
    } */
    .page-wrapper {
        padding-top: 15px;
        /* padding-bottom: 45px; */
    }
    .row.tab_box {
        padding: 13px;
    }
    .row.tab_box .col-pad {
        padding: 2px;
    }
    .main-tab-container {
        padding: 0px 15px !important;
    }
    .navbar-toggler {
        float: right;
        margin: 18px 0px;
    }
    button.navbar-toggler {
        background-color: transparent;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 4px;
        padding: 2px 6px;
        font-size: 14px;
    }
    /* ....................... */
    /* Project & Timesheet page CSS start */
    .objectives_data .table_content_scroll {
        max-height: initial;
        margin-right: 0px;
    }
    .objectives_data .mobile_scroll {
        max-height: 400px;
        overflow: auto;
    }
    .objectives_data .inner_div {
        width: 650px;
    }
    .review_modal.width_41 {
        width: 100%;
        top: 0;
    }
    .review_modal .review_list .col-xs-4 {
        margin-top: 5px;
        margin-bottom: 5px;
    }
    /* Project & Timesheet page CSS start */
}
/* ................................. */
@media only screen and (min-width:240px) and (max-width:575px) {
    #hero-banner h1 {
        font-size: 20px !important;
    }
}
/* ................................. */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
/* ................................. */
@media (min-width: 768px) {
    .navbar-collapse.collapse.show {
        display: block !important;
    }
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }
    .container {
        width: 750px;
        max-width: 720px;
    }
    h1 {
        font-size: 38px;
    }
}
/* .................................. */
@media only screen and (min-width:320px) and (max-width:768px) {
    .main-header .notification-count.position-absolute {
        right: 1px;
    }
}
/* ......................................... */
@media only screen and (min-width:769px) and (max-width:1024px) {
    .main-header .navbar-nav.mr-auto.nav {
        margin-top: 36px;
        padding-left: 20px;
    }
    .main-header .top-navbar .nav-item .nav-link {
        padding: 0.5rem 0.4rem !important;
        font-size: 12px;
    }
    .navbar-toggler-icon {
        width: 1em;
        height: 1em;
    }
    .main-header .mobile-nav {
        right: 15px;
    }
    .main-header .mobile-nav ul li:first-child {
        right: 0px;
    }
    .main-header .nav-item.dropdown .rounded-circle {
        width: 22px;
        height: 22px;
    }
    .main-header .notification-btn img {
        width: 18px;
    }
    .main-header .notification-count.position-absolute {
        font-size: 8px;
        right: 8px;
        top: 20px;
    }
    .main-header ul {
        padding-inline-start: 0px;
    }
    .main-header .top-navbar .navbar-brand {
        margin-right: 0;
        /* padding: 14px 0px; */
        width: 131px;
    }
    .main-header .navbar-collapse {
        box-shadow: unset;
        margin-top: 0;
    }
    .main-header .navbar-toggler {
        display: none;
    }
    .main-header.main-tab-container,
    .page-container {
        padding: 0px 9px;
    }
    .main-header .pull-right.mobile-nav .nav-item .nav-link {
        padding: 16px 0px !important;
    }
    .team_scroll.team_box_padding .col-md-3 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .team_scroll.team_box_padding .container {
        width: unset;
    }
    .row.tab_box .col-pad {
        padding: 0px 6px 0px 0px;
    }
    .manage-input-group {
        width: 100%;
    }
    .count-icons img {
        width: 20px;
        margin-top: 10px;
    }
    .main-header .navbar-nav.mr-auto.nav {
        margin-top: 15px;
    }
    .main-header .navbar-nav.justify-content-end.navbar_right_custom {
        padding: 0px 0px;
    }
    .main-header .navbar-nav .dropdown-menu {
        position: absolute;
    }
    /* .navbar-collapse.collapse
    {
        display: inline-block !important;
    } */
    .main-header .notification-count.position-absolute {
        left: 8px;
        top: 10px;
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    .pull-right.mobile-nav {
        padding-bottom: 5px !important;
    }
    .main-header .navbar {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .main-header .navbar-nav>li {
        padding: 0 0px;
    }
    .main-header .top-navbar .nav-item .nav-link {
        padding: 0.5rem 0.4rem !important;
        font-size: 11px;
    }
    .main-header .top-navbar .pull-right.mobile-nav .nav-link:hover {
        background-color: unset;
    }
    .main-header .top-navbar .navbar-brand {
        width: 18%;
    }
    .main-header .navbar-collapse {
        width: 82%;
    }
    .main-header .dropdown-menu {
        left: -20px;
        right: 0;
    }
    .main-header .dropdown-menu .down-arrow{
        right: 15px;
    }
    .main-header .dropdown-item {
        font-size: 11px;
    }
    .main-header .user-prof-dropdn .dropdown-menu {
        left: -260px;
    }
}
/* .......................................... */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-toggler {
        display: none
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .container {
        max-width: 960px;
    }
    /* .navbar-collapse.collapse
    {
        display: inline-block !important;
    } */
}
@media (min-width: 1200px) {
    .container {
        width: unset;
    }
    /* .navbar-collapse.collapse
    {
        display: inline-block !important;
    } */
}
/* .......................................... */
@media only screen and (min-width:992px) and (max-width:1024px) {
    .main-header .navbar-nav.mr-auto.nav {
        padding-left: 40px;
    }
    .main-header .top-navbar .nav-item .nav-link {
        padding: 0.5rem 0.8rem !important;
    }
    .timesheet_page .team_talent_section .col-xs-12.main_col {
        flex: 0 0 33.33%;
        max-width: 33.33%;
        width: 33.33%;
    }
    .card_container .sec_head, .sec_head {
        font-size: 12px;
    }
    .dashboard_new_page .page-wrapper {
        overflow-y: hidden;
        height: auto;
    }
    .no_data_image {
        width: 110px;
    }
}
/* .......................................... */
@media only screen and (min-width:1024px) and (max-width:1280px) {
    .page-container {
        padding: 0px 25px !important;
    }
    /* .nav-logo {
        width: 175px !important;
    } */
    .nav-logo {
        margin-top: 0px;
    }
    /* .main-header .top-navbar .navbar-brand
    {
        padding: 11px 0px;
    } */
    .main-header.main-tab-container,
    .page-container {
        padding: 0px 25px !important;
    }
    .main-header .notification-count.position-absolute {
        right: 15px;
    }
    .main-header .card-header {
        padding-right: 0.625rem;
    }
    .timesheet_page .team_talent_section .col-xs-12.main_col {
        flex: 0 0 33.33%;
        max-width: 33.33%;
        width: 33.33%;
    }
}
@media only screen and (min-device-width: 1025px) and (max-device-width:1199.98px) {
    .no_data_image {
        width: 130px;
    } 
}
@media only screen and (min-width: 1025px) and (max-width: 1422px) {
    .main-header.main-tab-container,
    .page-container {
        padding: 0px 40px;
    }
    .main-header .navbar-brand {
        margin-right: 20px;
        /* padding: 15px 0px; */
    }
    .main-header .top-navbar .nav-item .nav-link {
        padding: 0.5rem !important;
    }
    .main-header .navbar-nav>li {
        padding: 0 4px;
    }
    .main-header .top-navbar .pull-right.mobile-nav .nav-link {
        padding: 20px 0px !important;
        margin-top: 0;
    }
    .main-header .navbar-nav.mr-auto.nav {
        margin-top: 21px;
        padding-left: 0px;
    }
    .main-header .navbar-nav.justify-content-end.navbar_right_custom {
        padding: 0px 0px;
    }
    .main-header .navbar {
        min-height: 50px;
    }
    .main-header .notification-count.position-absolute {
        right: 12px;
    }
    /* .main-header .navbar-brand
    {
        padding: 11px 0px;
    } */
    .main-header .main-tabs.card-header>.nav .nav-link {
        font-size: 12px;
    }
    .popdiv .nav>li>a:focus,
    .nav>li>a:hover {
        background-color: #ffffff;
    }
    .main-header .notification-btn img {
        width: 22px;
    }
    .main-header .nav-item.dropdown .rounded-circle {
        width: 30px;
        height: 30px;
    }
    .main-header .navbar-nav.justify-content-end.navbar_right_custom {
        padding-right: 5px;
    }
}
@media only screen and (min-device-width: 1421px) and (max-device-width:1680px) {
    .main-header .top-navbar .nav-item .nav-link {
        padding: 5px 9px;
        font-size: 13px;
    }
    .main-header .navbar-nav.mr-auto.nav {
        margin-top: 21px;
    }
    .nav-logo {
        width: 200px;
    }
    .main-header .notification-count.position-absolute {
        right: 2px;
    }
    .main-header .notification-nav.dropdown .dropdown-toggle::after {
        display: none;
    }
}
/* ............................................. */
/* Standard Media Query according to Bootstap 3.4.1 Start */
/* x-small devices */
@media only screen and (min-device-width:320px) and (max-device-width:479.98px) {}
/* Small devices - sm  */
@media only screen and (min-device-width: 320px) and (max-device-width:767.98px) {
    .page-wrapper {
        padding-bottom: 0px;
    }
    .c2cttm_modal .modal-dialog {
        max-width: 100%;
    }
    .user_profile .icon_change_img
    {
        left: 28px;
    }
}
/* Medium devices - md */
@media only screen and (min-device-width: 768px) and (max-device-width:991.98px) {
    .modal-sm {
        width: 400px;
    }
    .c2cttm_modal.modal
    {
        --bs-modal-width: 45%;
    }
    .manager_profile_col .user_profile .profile_detail .img-sec {
        width: 45px !important;
        height: 45px !important;
    }
    .user_profile .icon_change_img
    {
        top: 30px;
        left: 26px;
    }
    .user_profile .profile_detail .info-sec
    {
        height: 65px !important;
        justify-content: flex-start;
    }
    .team-col.hieranchy_view .team_chart .member_list
    {
        height: calc(100vh - 470px) !important;
    }
    .user_profile .d_space_bet {
        margin-bottom: 5px;
    }
    .objectives_data .in_progress_task .card .m_0 {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    .objectives_data .in_progress_task .card .m_0 .col-sm-5{
        width: 51.666667%;
    }
    .objectives_data .card_header_label {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    .objectives_data .card_header_label .col-sm-5{
        width: 51.666667%;
    }
    .accordion .card .justify-content-between {
        align-items: flex-start;
    }
    .objectives_data .table_content_scroll .collapse .card .card-header .col-sm-2 .dropdown {
        height: 15px;
    }
    .objectives_data .table_content_scroll .collapse .card .card-header .col-sm-2 .dropdown .btn{
        height: 15px;
        line-height: 0px;
        margin-bottom: 5px;
    }
    .objectives_data .table_content_scroll .collapse .card .col-sm-2 {
        width: 18.666667%;
    }
}
/* Large devices - lg */
@media only screen and (min-device-width: 992px) and (max-device-width:1199.98px) 
{
    .modal-sm {
        width: 400px;
    }
    
}
/* X-Large devices */
@media (min-width: 1200px) {
    .modal-sm {
        width: 400px;
    }
}
/* Standard Media Query according to Bootstap 3.4.1 End */
/* XX-Large devices - xxl */
@media (min-width: 1680px) {}
.profile_warpper .candidate-info{
    position: absolute;
    top: 20px;
}
.hire_content p{
    margin: 0 0 10px;
}
.hire_content strong, .hire_content a{
    color: #0091ff;
}
.hire_content .hire-title{
    font-size: 3rem; 
}
.hire_content .welcome_note{
    font-size: 2.1rem;
}
.hire_content .hire-info strong{
   
}
.profile_warpper p small{
    font-size: 9px;
    text-align: center;
    font-weight: 700;
}
.events_new_page .new_hire_list_container .profile_warpper h4{
    font-size: 2rem;
}
.profile_warpper .candidate-info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}