.gap20 {
    height: 20px;
    display: block;
}

.gap40 {
    height: 40px;
    display: block;
}

.gap50 {
    height: 50px;
    display: block;
}

.gap60 {
    height: 60px;
    display: block;
}

.gap100 {
    height: 100px;
    display: block;
}

.gap150 {
    height: 150px;
    display: block;
}

ul {
    margin: 0;
}

ul li {
    list-style: none;
    padding: 0;
}

a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

body {
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
}
body::-webkit-scrollbar{
    width: 10px;
}
body::-webkit-scrollbar-thumb {
    background-color: #0079c2;
}

.heading {
    font-size: 18px;
    color: #161616;
    margin-bottom: 15px;
    font-weight: bold;
}

.paragraph {
    font-size: 16px;
    font-weight: normal;
    color: #9ca2b7;
}

button:focus, :hover {
    outline: none;
}

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

/* Header part css */

.smMenuHolderBody {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100000;
    display: none;
}

.smMenuHoldOverlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.07);
    z-index: 100000;
    display: none;
}

.smMenuHolder {
    position: absolute;
    right: 0;
    left: 20%;
    top: 0;
    bottom: 0;
    z-index: 9999999;
    z-index: 100001;
    /* height: 100vh; */
    overflow: auto;
    transition: all 0.2s;
}

.smMenuHolder::before {
    content: '';
    position: absolute;
    left: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    transition: all 0.2s;
}

.smMenuHolderShow.smMenuHolder::before {
    content: '';
    left: 0;
    transition: all 0.2s;
}

.smMenuInner {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
    padding: 30px;
}

.smMenuHolder ul {
    padding-left: 0;
    margin-top: 20px;
    font-weight: 500;
    color: #444;
    text-align: center;
}

.smMenuHolder ul li {
    padding: 10px 0 5px;
    position: relative;
}

.smMenuHolder ul li a {
    display: block;
    position: relative;
    padding-bottom: 5px;
    font-size: 18px;
}

.smMenuHolder ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30%;
    height: 2px;
    background-color: transparent;
}

.smMenuHolder ul li a.active::after {
    content: '';
    position: absolute;
    left: 35%;
    bottom: 0;
    width: 30%;
    height: 2px;
    background-color: #0884ff;
}

.smMenuHambarger {
    padding: 0;
    display: none;
    margin-right: 20px;
    position: relative;
    top: -3px;
}

.smMenuHambarger img {
    height: 12px;
    filter: invert(1);
}

.smSideLogo {
    width: 120px;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
}

.smMenuInner .menuLink {
    margin-top: 10px;
}

.header_nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
}

.logo img {
    width: 100%;
}

.header_nav .logo {
    width: 100px;
}

.header_nav .menu {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menu ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menuItem {
    padding: 8px 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    margin-right: 70px;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

.menuItem.active {
    opacity: 1;
    border-bottom: 2px solid #fff;
}

.menuItem:hover {
    text-decoration: none;
    opacity: 1;
    color: #fff;
    border-bottom: 2px solid #fff;
}

/* new css */

.sidebarWrapper {
    width: 300px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    border-right: 1px solid #ebecf4;
    transition: all 0.2s;
    z-index: 10000;
}

.sidebarWrapper.collapsed {
    width: 60px;
    z-index: 100;
}

/* .sidebarWrapper.collapsed .liMenuSpan {
    white-space: nowrap;
} */

.liMenuSpan.hide {
    white-space: nowrap;
}

.bodyWrapper {
    padding-left: 300px;
    background-color: #fff;
    transition: all 0.2s;
    position: relative;
}

.bodyWrapper.expand {
    padding-left: 60px;
}

.bodyInner {
    padding: 30px;
    background-color: #f3f4fa;
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    position: relative;
}

.header_wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: calc(100% - 300px);
    z-index: 1;
    background-color: #fbfbfd;
    border-bottom: 1px solid #ebecf4;
    padding: 10px 70px 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: all 0.2s;
    z-index: 1000;
}

.bodyWrapper.expand .header_wrapper {
    width: calc(100% - 60px);
}

.sideBarLogo {
    max-height: 32px;
}

.sideBarHeader {
    padding: 25px 25px 25px 15px;
    height: 80px;
    position: relative;
}

.closeSmIcon {
    position: absolute;
    right: 10px;
    top: 25px;
    opacity: 0.5;
    display: none;
}

.closeSmIcon img {
    width: 22px;
}

.sidebarWrapper.collapsed .closeSmIcon {
    display: none;
}

.sideBarBody {
    max-height: calc(100vh - 80px);
    overflow: auto;
    overflow-x: hidden;
}

.sideBarBody::-webkit-scrollbar {
    width: 5px;
}

.sideBarBody::-webkit-scrollbar-thumb {
    background-color: #dadce8;
    border-radius: 30px;
}

.sideMainUl {
    padding-left: 0;
}

.sideMainUl li {
    list-style: none;
    display: block;
}

.sideMainUl li a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    transition: all 0.2s;
    position: relative;
    z-index: 1;
}

.sideMainUl li.active a::before {
    content: '';
    opacity: 1;
}

.sideMainUl li a::before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: -moz-linear-gradient( 0deg, rgb(0, 149, 218) 1%, rgb(52, 226, 237) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(0, 149, 218) 1%, rgb(52, 226, 237) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(0, 149, 218) 1%, rgb(52, 226, 237) 100%);
    box-shadow: 0px 4px 28px 0px rgba(0, 165, 203, 0.5);
    opacity: 0;
    transition: all 0.2s;
}

.sideMainUl li a:hover::before {
    opacity: 1;
}

.sideMainUl li.active a span {
    color: #fff;
}

.sideMainUl li a:hover span {
    color: #fff;
}

.sideMainUl li.active a img {
    filter: brightness(100);
}

.sideMainUl li a:hover img {
    filter: brightness(100);
}

.sideMainUl li a span {
    margin-left: 15px;
    font-size: 16px;
    color: #9ca2b7;
    line-height: 16px;
}

.sideBarToggler {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.sideBarToggler:hover {
    background-color: #fff;
    box-shadow: 0px 4px 15px rgb(0, 0, 0, 0.15);
}

.sideBarToggler img {
    width: 20px;
}

.notifLink {
    position: relative;
    margin-right: 30px;
    top: 3px;
    transition: all 0.2s;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notifLink:hover {
    background-color: rgb(255 255 255);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
}

.notifLink .notifCounter {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-self: center;
    justify-content: center;
    border: 2px solid #fff;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    background-image: -moz-linear-gradient( 0deg, rgb(0, 149, 218) 1%, rgb(52, 226, 237) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(0, 149, 218) 1%, rgb(52, 226, 237) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(0, 149, 218) 1%, rgb(52, 226, 237) 100%);
}

.notifLink img {
    max-height: 20px;
}
.notifDownWrap a {
    display: flex !important;
    align-items: center;
}
.notifDownWrap a img {
    width: 30px;
    height: 30px !important;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 5px !important;
    opacity: 1 !important;
}
.notifDownWrap a .ndDropRight {
    flex-grow: 1;
    width: calc(100% - 40px);
}
.ndDesc {
    display: block;
    font-size: 14px;
    color: #444444;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 16px;
}
.ndDate {
    display: block;
    font-size: 12px;
    color: #8d8d8d;
}

.userDropWrap {
    position: relative;
}
.userDropWrapByClick {
    position: relative;
}

.dropDownWrap {
    position: absolute;
    top: 100%;
    right: -30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 10px 15px rgb(0 0 0 / 8%);
    min-width: 100%;
    overflow: hidden;
    min-width: 170px;
    display: none;
    padding: 10px;
    max-height: 300px;
    overflow: auto;
    z-index: 1;
    max-width: 300px;
}
.dropDownWrap::-webkit-scrollbar {
    width: 5px;
    border-radius: 30px;
}
.dropDownWrap::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1);
}

.dropDownWrap a {
    white-space: nowrap;
    padding: 10px 15px;
    color: #000;
    transition: all 0.2s ease;
    display: block;
    border-radius: 5px;
}
.dropDownWrap a img {
    height: 20px;
    margin-right: 5px;
    opacity: 0.7;
}

.dropDownWrap a:hover {
    background-color: #f0f0f0;
}

.userDropWrap:hover .dropDownWrap {
    display: block;
}

.userDropWrapByClick .dropDownWrap {
    position: absolute;
    right: -140px !important;
}
/* .userDropWrapByClick:hover .dropDownWrap {
    
} */

.userInfoCaller {
    display: flex;
    align-items: center;
    position: relative;
}

.userInfoCaller::after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid #9ea4b9;
    border-right: 2px solid #9ea4b9;
    position: absolute;
    right: -17px;
    top: calc(50% - 6px);
    transform: rotate(135deg)
}

.userInfoCaller .usercircle {
    width: 40px;
    height: 40px;
    border: 1px solid #b8bccd;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.userInfoCaller span {
    font-size: 16px;
    color: #9ca2b7;
    transition: all 0.2s;
}

.userInfoCaller:hover span {
    color: #7d85a1;
}

.headerRightElm {
    display: flex;
    align-items: center;
}

.customCard {
    padding: 20px 20px 20px 20px;
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.08);
    margin-bottom: 15px;
}

.statisticchartWrap {
    position: relative;
}

.staticon {
    height: 50px;
    position: absolute;
    left: 43%;
    top: 53%;
}

.tableCustomCard {
    padding: 0;
}

.table td, .table th {
    vertical-align: top;
    border-top: 1px solid #f4f4f9;
    color: #9ca2b7;
    padding: 1em;
}

.table thead th {
    vertical-align: bottom;
    /* border-bottom: 0; */
    border-bottom-color: #ecedf3;
    border-top: 0;
    color: #6c7288;
}

.statusGreen {
    color: #00d277;
    font-size: 16px;
    font-weight: 600;
}

.statusRed {
    color: #ff3267;
    font-size: 16px;
    font-weight: 600;
}

.tableDescription {
    width: 90%;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.tableViewMoreLink {
    float: right;
    margin-left: 5px;
}

.suggestionsItem {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #f2f3f8;
}

.suggestionsItem:last-child {
    border-bottom: 0;
}

.sgUserCircle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.sgUsertextWrap {
    flex-grow: 1;
    padding-left: 15px;
}

.sgUserName {
    color: #6c7288;
    font-size: 17px;
    margin: 0 0 10px;
    font-weight: 600;
}

.sgdesc {
    font-size: 15px;
    color: #9ca2b7;
    margin: 0;
}

.viewMoreLink {
    color: #0079c2;
    opacity: 0.8;
    transition: all 0.2s;
}

.viewMoreLink:hover {
    opacity: 1;
    color: #0079c2;
}

.viewMoreLink img {
    margin-left: 5px;
    position: relative;
    top: -1px;
}

.noPadding {
    padding: 0 !important;
}

.settingsTabHoldItem {
    padding: 25px 25px;
    background-color: #fff;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9eaed;
    margin-bottom: 30px;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.settingsTabHoldItem.active {
    border: 2px solid #049bdb;
}

.settingsTabHoldItem:hover {
    border: 2px solid #049bdb;
}

.setTabImg {
    max-width: 65px;
    margin-bottom: 15px;
}

.setTabName {
    font-size: 17px;
    color: #606576;
    font-weight: 600;
    display: block;
}

.customBtn {
    font-size: 18px;
    color: #fff;
    background-color: #f58026;
    padding: 10px 10px;
    text-align: center;
    border: 2px solid #f58026;
    outline: none;
    cursor: pointer;
    border-radius: 7px;
    transition: all 0.2s;
    text-transform: uppercase;
    font-weight: 500;
}

.customBtn:focus {
    outline: none;
}

.customBtn:hover {
    color: #fff;
    background-color: #d36008;
}

.customOutlineBtn {
    font-size: 18px;
    color: #f58026;
    background-color: #fff;
    border: 2px solid #f58026;
    padding: 10px 20px;
    text-align: center;
    outline: none;
    cursor: pointer;
    border-radius: 7px;
    transition: all 0.2s;
    text-transform: uppercase;
    font-weight: 500;
}

.customOutlineBtn:focus {
    outline: none;
}

.customOutlineBtn:hover {
    color: #e26f17;
    background-color: #f5f5f5;
}

.inBtnPlusIcon {
    font-size: 26px;
    line-height: 20px;
    position: relative;
    top: 2px;
    margin-right: 2px;
}

.disable {
    opacity: 0.3;
    cursor: not-allowed;
}

.disable:hover {
    color: #fff;
    background-color: #f58026;
}

.btn-block {
    display: block;
}

.btnWrapper a, button {
    margin-right: 10px;
}

.btnWrapper a:last-child, button:last-child {
    margin-right: 0;
}

.setProfCircleImg {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #fff;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.17);
}

.flexAlignCenter {
    display: flex;
    align-items: center;
}

.profileWrap {
    padding: 10px;
    background-color: #fff;
    box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.inputfileWrap {
    position: relative;
    cursor: pointer;
}

.inputHeading {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    display: inline-block;
    cursor: pointer;
}

.inputfileWrap input[type="file"] {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}

.inpFileName {
    font-size: 14px;
    color: #000;
    opacity: 0.6;
    font-weight: 600;
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mb-0 {
    margin-bottom: 0;
}

.flexAlignJustify {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.formFieldWrap {
    margin-bottom: 15px;
}

input, select, textarea {
    background-color: #fff;
    border: 1px solid #e6e7ee;
    border-radius: 7px;
    padding: 10px;
}

.formFieldWrap label {
    color: #686a76;
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    line-height: 17px;
}

.formFieldWrap input, select, textarea {
    width: 100%;
    background-color: #fff;
    border: 1px solid #e6e7ee;
    border-radius: 7px;
    width: 100%;
    padding: 5px;
}

.formFieldWrap textarea {
    min-height: 120px;
    resize: none;
}

.startDateWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.inpNumWrap {
    width: 15%;
}

.inpMonthWrap {
    width: 40%;
}

.setTabContWrap {
    display: none;
}

.setTabContWrap.active {
    display: block;
}

.toggle.btn {
    min-width: 80px !important;
    min-height: 2.15rem;
    border-radius: 30px !important;
}

.toggle-on.btn {
    padding-right: 50px;
}

.toggle-handle {
    position: relative;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 0;
    height: 100%;
    width: 0;
    border-width: 0 5px;
    background-color: #fff;
    border-radius: 50%;
    left: -16px;
}

.toggle.off .toggle-handle {
    left: 16px;
    background-color: #fff !important;
    width: 42px;
}

.toggle.off .btn-light {
    color: #ffffff;
    background-color: #959595;
    border-color: #959595;
}

label.form-check-label {
    margin-left: 15px;
    opacity: 0.7;
}

.toggle.btn .btn-primary {
    color: #fff;
    background-color: #24d491 !important;
    border-color: #24d491 !important;
}

.toggle.btn.btn-primary {
    color: #fff;
    background-color: #24d491 !important;
    border-color: #24d491 !important;
}

.notifSecWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    transition: all 0.2s;
    /* margin-bottom: 20px; */
}

.notifSecWrap:hover {
    background-color: #fafafc;
}

.notifSecDesc {
    width: 80%;
}

.m-b-5 {
    margin-bottom: 5px !important;
}

.toggle-off.btn {
    padding-left: 40px;
}

.brTabameHolder {
    display: flex;
    align-items: center;
}

.brTabName {
    font-size: 17px;
    color: #9ca2b7;
    font-weight: 500;
    padding: 7px 0px;
    margin-right: 30px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.brTabName:hover {
    color: #0079c2;
}

.brTabName:last-child {
    margin-right: 0;
}

.brTabName.active {
    color: #0079c2;
    border-bottom: 2px solid #0079c2;
}

.clTabName {
    font-size: 17px;
    color: #9ca2b7;
    font-weight: 500;
    padding: 7px 0px;
    margin-right: 30px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.clTabName:hover {
    color: #0079c2;
}

.clTabName:last-child {
    margin-right: 0;
}

.clTabName.active {
    color: #0079c2;
    border-bottom: 2px solid #0079c2;
}

.brUserImg {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: relative;
    border: 6px solid rgba(224, 224, 224, 0.3);
}

.brColSelectWrap {
    display: flex;
    align-items: center;
}

.brColSelectWrap .assignUser {
    min-width: 200px;
    margin-right: 20px;
}

.dateSpanWrap {
    margin-top: 0;
    line-height: 16px;
    margin-bottom: 0;
}

.dateSpanWrap img {
    margin-right: 15px;
}

.dateSpanWrap span {
    font-size: 16px;
    color: #000;
    opacity: 0.5;
}

.brFullCard {
    margin-bottom: 20px;
}

.brTabBody {
    display: none;
}

.brTabBody.active {
    display: block;
}

.brBodyInnerHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

       
      
}

.brTabBodyContHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.chCard {
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.chCard:hover {
    background-color: #122d4e;
}

.chCard:hover .chdesc {
    opacity: 1;
}

.chCardImgWrap {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    margin-bottom: -8px;
}

.chCardImg {
    width: 46px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.seeDtlsChCaller {
    position: absolute;
    bottom: 40px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seeDtlsChCaller img {
    width: 15px;
}

.chStatTag {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.chStatTag::before {
    content: '';
    position: absolute;
    left: -20px;
    top: calc(50% - 7px);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #000;
}

.chStatTag.statYellow::before {
    background-color: #ffbb00;
}

.chStatTag.statGreen::before {
    background-color: #07a33b;
}

.chStatTag.statRed::before {
    background-color: #da0000;
}

.chStatTag.statYellow {
    color: #ffbb00;
}

.chStatTag.statGreen {
    color: #07a33b;
}

.chStatTag.statRed {
    color: #da0000;
}

.chName {
    font-size: 15px;
    font-weight: 600;
    color: #000;
}

.chCard:hover .chName {
    color: #ffffff;
}

.chdesc {
    font-size: 14px;
    color: #ffffff;
    opacity: 0;
    line-height: 17px;
}

.chCard:hover .chdesc {
    opacity: 0.7;
}

.modalWrapperHolder {
    display: none;
    width: 100%
}

.modalWrapper {
    position: fixed;
    top: 80px;
    bottom: 0;
    left: 300px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modalOverlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(10, 164, 222, 0.8);
    z-index: 1;
}

.modalInner {
    width: 50%;
    background-color: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    border-radius: 20px;
}

.closeModalIcon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-self: center;
    background-color: #00a3cc;
    border: 2px solid #fff;
    position: absolute;
    right: -10px;
    top: -10px;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #fff;
    text-align: center;
    display: inline-block;
    font-weight: bold;
}

.closeModalIcon:hover {
    background-color: #0084a5;
    color: #fff;
}

.closeModalIcon img {
    width: 15px;
}

.modal_Header {
    padding: 30px;
    border-bottom: 1px solid #ddd;
}

.modalBody {
    padding: 60px;
    max-height: 80vh;
    overflow: auto;
}

.modalBody::-webkit-scrollbar {
    width: 5px;
}

.modalBody::-webkit-scrollbar-thumb {
    background-color: #0084a5;
    border-radius: 50px;
}

.flexCenter {
    display: flex;
    align-items: center;
}

.chModImg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.chModDtlHeadWrap {
    padding-left: 20px;
}

.chModDtlName {
    font-size: 20px;
    color: #000;
    margin-bottom: 5px;
    line-height: 22px;
    font-weight: 600;
}

.chModDtlDesg {
    font-size: 16px;
    color: #000;
    opacity: 0.7;
}

.noScroll {
    overflow: hidden;
}

.suggBoxCard {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    max-height: 370px;
    overflow: auto;
    padding-bottom: 30px;
}

.suggBoxCard::-webkit-scrollbar {
    width: 5px;
}

.suggBoxCard::-webkit-scrollbar-thumb {
    background-color: #0084a5;
    border-radius: 50px;
}

.suggBoxCol {
    position: relative;
}

.seeDtlSuggCaller {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-image: -moz-linear-gradient( 0deg, rgb(0, 149, 218) 1%, rgb(52, 226, 237) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(0, 149, 218) 1%, rgb(52, 226, 237) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(0, 149, 218) 1%, rgb(52, 226, 237) 100%);
    background-image: linear-gradient( 0deg, rgb(0, 149, 218) 1%, rgb(52, 226, 237) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 13px;
    left: calc(50% - 15px);
    transition: all 0.2s;
}

.seeDtlSuggCaller:hover {
    box-shadow: 0px 4px 15px rgb(0 165 203 / 50);
}

.sugBocImgCircle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}

.suggBoxUsName {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.sugTitle {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.sugDesc {
    font-size: 16px;
    color: #9ca2b7;
    margin: 0;
}

.chRow {
    display: none;
}

.chRow.active {
    display: block;
}

.modPara {
    font-size: 17px;
    color: #656565;
}

.resourcesHeading {
    color: #73798e;
    font-size: 20px;
    font-weight: 500;
}

.rsrcFileIconWrap {
    margin-top: 20px;
    min-height: 75px;
    margin-bottom: 20px;
}

.rsrcFileIconWrap .fileIconImg {
    max-width: 32px;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
}

.rsrcFileIconWrap .fileName {
    font-size: 14px;
    color: #9ca2b7;
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rsrcutlIconWrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rsrcIconLink {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eff6f9;
    border: 1px solid #0079c2;
    margin-right: 10px;
    transition: all 0.2s;
}

.rsrcIconLink:hover {
    background-color: #c7e5f1;
}

.rsrcIconLink:last-child {
    margin-right: 0;
}

.resourceCol {
    margin-bottom: 30px;
    display: flex;
}

.resourceCol .dropzone {
    min-height: 40px;
}

.resourceCol .dropzone .dz-message {
    text-align: center;
    margin: 0 0 !important;
}

.cardWithHeader {
    margin-bottom: 20px;
}

.cardWithHeader .cwHeaderWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #0079c2;
    border-radius: 15px 15px 0 0;
}

.cardWithHeader .cwHeaderWrap .cwhText {
    font-size: 16px;
    color: #cee6f4;
    line-height: 16px;
}

.cardWithHeaderBody {
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 13px 0px rgba(0, 0, 0, 0.08);
}

.cwhDesc {
    font-size: 18px;
    color: #73798e;
    margin-bottom: 10px;
    font-weight: 600;
}

.qaDesc {
    font-size: 18px;
    color: #73798e;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 18px;
}

.qaWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
    border: 2px solid rgb(168, 219, 241);
    box-shadow: 0px 9px 25px 0px rgb(0 70 112 / 20%);
    margin-bottom: 5px;
    padding: 10px;
}

.cardWithHeaderRow {
    margin-top: 20px;
    max-height: calc(100vh - 255px);
    overflow: auto;
}

.cardWithHeaderRow::-webkit-scrollbar {
    width: 5px;
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0.1);
}

.cardWithHeaderRow::-webkit-scrollbar-thumb {
    background-color: #0079c2;
    border-radius: 30px;
}

/* The container */

.customRadioWrap {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 16px;
    line-height: 27px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #73798e;
    font-weight: 500;
}

/* Hide the browser's default radio button */

.customRadioWrap input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #ffffff;
    border-radius: 50%;
    border: 2px solid #1fc3e6;
}

/* On mouse-over, add a grey background color */

.customRadioWrap:hover input~.checkmark {
    background-color: #f3f4fa;
}

/* When the radio button is checked, add a blue background */

.customRadioWrap input:checked~.checkmark {
    background-color: #ffffff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */

.customRadioWrap input:checked~.checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */

.customRadioWrap .checkmark:after {
    top: 4px;
    left: 4px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #07a0dd;
}

/* The container */

.customCheckboxWrap {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 500;
}

/* Hide the browser's default checkbox */

.customCheckboxWrap input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */

.checkmarkCheck {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #ffffff;
    border-radius: 5px;
    border: 2px solid #C9C9C9;
}

/* On mouse-over, add a grey background color */

.customCheckboxWrap:hover input~.checkmarkCheck {
    background-color: #fbfbfb;
}

/* When the checkbox is checked, add a blue background */

.customCheckboxWrap input:checked~.checkmarkCheck {
    background-color: #f58026;
    border: 2px solid #f58026;
}

/* Create the checkmarkCheck/indicator (hidden when not checked) */

.checkmarkCheck:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmarkCheck when checked */

.customCheckboxWrap input:checked~.checkmarkCheck:after {
    display: block;
}

/* Style the checkmarkCheck/indicator */

.customCheckboxWrap .checkmarkCheck:after {
    left: 6px;
    top: 2px;
    width: 8px;
    height: 14px;
    border: solid #ffffff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.filterSelectorWrapper {
    position: relative;
}

.filterSelectorWrapperSm {
    display: none;
}

.filterSelector {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #a8dbf1;
    background-color: #e4f2fa;
    color: #0079c2;
    font-size: 16px;
    padding-left: 25px;
}

.filterIcon {
    position: absolute;
    left: 10px;
    top: 7px;
}

textarea:focus-visible, select:focus-visible, input:focus-visible {
    outline: none;
}

.noBorder {
    border: 0 !important;
}

.noBorder:hover {
    border: 0;
}

/* signup css */

.authWrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.authWrapper .logoLink {
    position: absolute;
    left: 30px;
    top: 15px;
}

.authLeft {
    width: 50%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.authRight {
    width: 50%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.authRightRegister {
    width: 50%;
    background-color: #fff;
}

.authHeader {
    font-size: 30px;
    color: #003d61;
    font-weight: 500;
    margin-bottom: 5px;
}

.authSubHeading {
    color: #969595;
    font-size: 16px;
    margin-bottom: 30px;
    display: block;
}

.authFormField {
    width: 100%;
    position: relative;
    border-radius: 4px;
    border: 1px solid #0079c2;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    padding: 15px 20px;
}

.authFormField label {
    position: absolute;
    top: -11px;
    left: 15px;
    font-size: 16px;
    color: #4c4c4c;
    line-height: 16px;
    padding: 3px 5px;
    background-color: #fff;
    margin: 0;
}

.authFormField .inpImg {
    max-height: 20px;
    margin-right: 10px;
}

.authFormField input {
    border: none;
    outline: none;
    background: transparent;
    flex-grow: 1;
    padding: 0;
}
.authRightInner {
    width: 100%;
    max-height: 90vh;
    overflow: auto;
    padding: 30px 100px;
}
.authRightInner::-webkit-scrollbar {
    width: 5px;
    border-radius: 30px;
}
.authRightInner::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1);
}
.authBtmLinkWrap {
    font-size: 16px;
    color: #969595;
}

.authBtmLinkWrap a {
    color: #017ac2;
    text-decoration: underline;
    transition: all 0.2s;
}

.authBtmLinkWrap a:hover {
    color: #00507e;
}

.authBtmLinkWrap .customCheckboxWrap {
    color: #969595;
    font-size: 16px;
}

.dropDownWrap.notifDownWrap {
    position: absolute;
    right: 58px !important;
    display: block;
}

img.smallAvatar {
    height: 30px;
}

.actionSelector{
    padding: 9px;
    border-radius: 5px;
    border: 1px solid #f58026;
    background-color: #e4f2fa;
    color: #0079c2;
    font-size: 16px;
    padding-left: 40px;
    
}


.settings-dropdown{
    padding-left: 42px;
}

.edit_poll_modal_hide{
    display: none;
}

.edit_survey_modal_hide{
    display: none;
}

.paginationWrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
}
.paginationWrapper .paginationCount.active {
    background-color: #0079c2;
    color: #fff;
}
.paginationWrapper .paginationCount {
    background-color: #fff;
    border-radius: 4px;
    color: #0079c2;
    border: 1px solid #0079c2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 14px;
    margin-right: 10px;
    width: 35px;
    height: 35px;
    transition: all 0.2s;
}
.surveyModal{
    width: 70%!important;
}




.profImagecircle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 7px solid rgba(255,255,255,0.4);
}

.bg-orange{
    background-color: #f58026 !important;
}

.quotesCard{
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 13px 0px rgb(0 0 0 / 8%);
}

.mw-50{
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.custom-click{
    cursor: pointer;
}

.filterSelector {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #a8dbf1;
    background-color: #e4f2fa;
    color: #0079c2;
    font-size: 16px;
    padding-left: 25px;
}

.chSelector {
    padding-left: 8px;
    margin-bottom: 10px;
}

.customDltbtnText {
    display: inline-flex;
    align-items: center;
    padding: 7px 6px;
    color: #000;
    background-color: #fff;
    border: 2px solid #d40505;
    border-radius: 5px;
    color: #d40505;
    transition: all 0.2s;
}
.customOutlineBtnbtn {
    font-size: 15px;
    color: #f58026;
    background-color: #fff;
    border: 2px solid #f58026;
    padding: 5px 20px;
    text-align: center;
    outline: none;
    cursor: pointer;
    border-radius: 7px;
    transition: all 0.2s;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    justify-content: center;
}
.paginationWrapper .paginationCount img {
    max-width: 20px;
}


/* Admin Dashboard Employees */
.table-responsive {
    margin: 30px 0;
    }
    .table-wrapper {
    min-width: 1000px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 3px;
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
    }
    .table-title {
    padding-bottom: 15px;
    color: #fff;
    padding: 16px 30px;
    margin: -20px -25px 10px;
    border-radius: 3px 3px 0 0;
    }
    .table-title .btn {
    color: #566787;
    float: right;
    background: #fff;
    border: none;
    min-width: 50px;
    border-radius: 2px;
    border: none;
    outline: none !important;
    margin-left: 10px;
    }
    .table-title .btn:hover, .table-title .btn:focus {
    color: #566787;
    background: #f2f2f2;
    }
    .table-title .btn i {
    float: left;
    margin-right: 5px;
    }
    .table-title .btn span {
    float: left;
    margin-top: 2px;
    }
    table.table tr th, table.table tr td {
    border-color: #e9e9e9;
    padding: 12px 15px;
    vertical-align: middle;
    }
    table.table tr th:first-child {
    width: 60px;
    }
    table.table tr th:last-child {
    width: 100px;
    }
    table.table-striped tbody tr:nth-of-type(odd) {
    background-color: #fcfcfc;
    }
    table.table-striped.table-hover tbody tr:hover {
    background: #f5f5f5;
    }
    table.table th i {
    font-size: 13px;
    margin: 0 5px;
    cursor: pointer;
    }	
    table.table td:last-child i {
    opacity: 0.9;
    margin: 0 5px;
    }
    table.table td a {
    color: #566787;
    display: inline-block;
    text-decoration: none;
    }
    table.table td a:hover {
    color: #2196F3;
    }
    table.table td a.settings {
    color: #2196F3;
    }
    table.table td a.delete {
    color: #F44336;
    }
    table.table .avatar {
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 10px;
    height: 20px
    }
    .status {
    font-size: 30px;
    margin: 2px 2px 0 0;
    display: inline-block;
    vertical-align: middle;
    line-height: 10px;
    }
    .text-success {
    color: #10c469;
    }
    .text-info {
    color: #62c9e8;
    }
    .text-warning {
    color: #FFC107;
    }
    .text-danger {
    color: #ff5b5b;
    }
    .small-icon{
    font-size: 14px
    }
    .custom-modal-content{
    position: absolute;
    border-radius: 2.0rem
    }
    .modal-header{
       background: -webkit-linear-gradient( 0deg, rgb(0, 149, 218) 100%, rgb(52, 226, 237) 1%) !important
    }

      .text-orange{
        color: #f58026 !important
      }

      .suggestionCreated{
        font-size: 14px;
      }

      .suggestionDate{
        font-size: 12px;
      }

      .announcementImage {
        height: 100px;
    }

    .editProfRow{
        margin-left: 15px
    }

    .avatar-preview:hover {
        opacity: 0.5 !important;
    }

    .table-responsive {
        margin: 30px 0;
        }
        .table-wrapper {
        min-width: 1000px;
        background: #fff;
        padding: 20px 25px;
        border-radius: 3px;
        box-shadow: 0 1px 1px rgba(0,0,0,.05);
        }
        .table-title {
        padding-bottom: 15px;
        color: #fff;
        padding: 16px 30px;
        margin: -20px -25px 10px;
        border-radius: 3px 3px 0 0;
        }
        .table-title .btn {
        color: #566787;
        float: right;
        font-size: 13px;
        background: #fff;
        border: none;
        min-width: 50px;
        border-radius: 2px;
        border: none;
        outline: none !important;
        margin-left: 10px;
        }
        .table-title .btn:hover, .table-title .btn:focus {
        color: #566787;
        background: #f2f2f2;
        }
        .table-title .btn i {
        float: left;
        font-size: 21px;
        margin-right: 5px;
        }
        .table-title .btn span {
        float: left;
        margin-top: 2px;
        }
        table.table tr th, table.table tr td {
        border-color: #e9e9e9;
        padding: 12px 15px;
        vertical-align: middle;
        }
        table.table tr th:first-child {
        width: 60px;
        }
        
        table.table-striped tbody tr:nth-of-type(odd) {
        background-color: #fcfcfc;
        }
        table.table-striped.table-hover tbody tr:hover {
        background: #f5f5f5;
        }
        table.table th i {
        font-size: 13px;
        margin: 0 5px;
        cursor: pointer;
        }	
       
        table.table td a {
        color: #566787;
        display: inline-block;
        text-decoration: none;
        }
        table.table td a:hover {
        color: #2196F3;
        }
        table.table td a.settings {
        color: #2196F3;
        }
        table.table td a.delete {
        color: #F44336;
        }
        table.table td i {
        font-size: 19px;
        }
        table.table .avatar {
        border-radius: 15%;
        vertical-align: middle;
        margin-right: 10px;
        height: 20px
        }
        .status {
        font-size: 30px;
        margin: 2px 2px 0 0;
        display: inline-block;
        vertical-align: middle;
        line-height: 10px;
        }
        .text-success {
        color: #10c469;
        }
        .text-info {
        color: #62c9e8;
        }
        .text-warning {
        color: #FFC107;
        }
        .text-danger {
        color: #ff5b5b;
        }
        .small-icon {
         font-size: 10px;
     }
