/* during development css */
.pageloaderWrp {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -999;
    background: rgb(255 255 255 / 56%);
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.loading_page .pageloaderWrp {
    opacity: 1;
    z-index: 9999;
}

.imageUploaderBox {
    width: 50px;
    height: 50px;
    position: relative;
}

.profileMainWrp {
    width: 100%;
}

.profileHadwrp {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    align-items: center;
    margin-bottom: 50px;
}

.profileTitlebx {
    width: 100%;
}

.helpHeadContWrp {
    background: #02519E;
    width: 100%;
    display: block;
    margin: 0px 0px 30px;
    padding: 30px;
    box-shadow: 0px 0px 6px #00000029;
    border-radius: 10px;
}

.helpHeadContWrp ul {
    display: block;
    width: 100%;
}

.helpHeadContWrp ul li {
    color: #fff;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 10px;
    font-weight: 400;
}

.helpHeadContWrp ul li strong {
    display: inline-block;
    margin-right: 10px;
}

.helpReplyChatWrp {
    display: block;
    width: 100%;
}

.helpReplyChat {
    width: 100%;
    display: block;
    overflow: auto;
    min-height: 500px;
    height: 100%;
    max-height: 600px;
}

.chatrowLeftWrp.usrReplyWrp {
    justify-content: flex-end;
}

.chatrowLeftWrp.usrReplyWrp .chatUseContPeraghaWrp:before {
    content: "";
    width: 50px;
    height: 50px;
    background: url('../images/rightchat.png') no-repeat;
    background-size: 80%;
    position: absolute;
    right: -30px;
    top: -2px;
    left: auto
}

.chatUserCcontWrp {
    display: block;
    width: auto;
}

.chatUseContPeraghaWrp {
    width: 100%;
    background: #02519e;
    padding: 20px;
    color: #fff;
    border-radius: 15px;
    position: relative;
}

.usrReplyWrp .chatUseContPeraghaWrp {
    background: #F1F0F8;
    color: #000000;
}

.chatUseContPeraghaWrp p {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
}

.chatrowLeftWrp {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 15px;
}

.chatUserImatLet {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f1f1f1;
    margin-right: 30px;
}

.usrReplyWrp .chatUserImatLet {
    margin-right: 0;
    margin-left: 30px;
}


.chatrowLeftWrp.usrReplyWrp {
    justify-content: flex-end;
}

.usrReplyWrp .chatTimeDatWrp {
    text-align: right;
}

.chatTimeDatWrp {
    width: 100%;
    padding: 10px 0 0;
    font-size: 18px;
    font-weight: 500;
    color: #898989;
}

.helpReplyButoBox {
    background: #F1F0F8;
    padding: 10px 20px;
    border-radius: 10px;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    align-items: center;
}

.fileUpldoBx {
    width: 50px;
    position: relative;
    text-align: center;
}

.fileUpldoBx i {
    font-size: 30px;
    color: #000000;
}

.fileUpldoBx input {
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.fileUpldoBx_show {
    width: 200px;
    height: 100px;
    display: flex;
}

.chatReplIputWrp {
    width: 100%;
    padding: 0px 10px;
}

.chatReplIputWrp input {
    border: none;
    background: transparent;
    font-size: 20px;
    color: #000;
}

.chatReplySendBtn {
    width: 50px;
}

.chatReplySendBtn button {
    border: none;
}

.chatReplySendBtn img {
    width: 30px;
    display: inline-block;
}

.statusStyle {
    color: white;
    font-size: 18px;
}

.chatimage {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.trash {
    background: #ff6873;
    width: 19px;
    height: 20px;
    display: inline-block;
    margin: 0 auto;
    position: relative;
    -webkit-border-bottom-right-radius: 18%;
    -webkit-border-bottom-left-radius: 18%;
    -moz-border-radius-bottomright: 18%;
    -moz-border-radius-bottomleft: 18%;
    border-bottom-right-radius: 18%;
    border-bottom-left-radius: 18%;
    border: 0;
    margin-top: 4%;
    cursor: pointer;
}

.trash span {
    position: absolute;
    height: 20%;
    background: #ff6873;
    top: -29%;
    left: -20%;
    right: -25%;
    border-top-left-radius: 90%;
    border-top-right-radius: 90%;
    transform: rotate(0deg);
    transition: transform 250ms;
    transform-origin: 19% 100%;
}

.trash span:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 90%;
    background: #ff6873;
    top: -102%;
    border-top-left-radius: 90%;
    border-top-right-radius: 90%;
    transform: rotate(0deg);
    transition: transform 250ms;
    transform-origin: 19% 100%;
    left: 22%;
}

.trash i {
    position: absolute;
    width: 10%;
    background: #fff;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    top: 10%;
    left: calc(50%);
    bottom: 10%;
}

.trash i:after {
    content: '';
    background: #fff;
    position: absolute;
    left: -260%;
    border-radius: 5px;
    width: 100%;
    height: 100%;
}

.trash i:before {
    content: '';
    background: #fff;
    position: absolute;
    right: -240%;
    border-radius: 5px;
    width: 100%;
    height: 100%;
}

.trash:hover span {
    transform: rotate(-45deg);
    transition: transform 250ms;
}

.imageUploaderBox.product {
    width: 100px;
    height: auto;
}

.imageUploaderBox input {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
}

.imageUploaderBox i {
    position: absolute;
    top: -6px;
    right: -10px;
}

.imageUploaderBox img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.imageUploaderBox.product img {
    border-radius: 0%;
}

.form-radio-lg {
    width: 30px;
    height: 30px;
}

.form-radio-md {
    width: 25px;
    height: 25px;
}

.form-radio-sm {
    width: 20px;
    height: 20px;
}

.privewCoordinate {
    position: relative;
    overflow: hidden;
    height: 100px;
}

.privewCoordinate img {
    position: absolute;
}

.form-check span {
    padding: 0 0 0 15px;
}

.form-check label {
    margin: 0;
    display: flex;
    align-items: center;
}

.form-check input {
    margin: 0;
    position: static;
}

.form-check {
    padding-left: 0;
}

.corpbtnwpr {
    padding: 15px 0;
    display: flex;
    display: -webkit-flex;
    margin-left: -15px;
    margin-right: -15px;
}

.cropbtnGroup {
    padding: 0 15px;
}

.answrrbox {
    min-height: 60px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
}

.answrrbox span {
    width: 100%;
    display: block;
    background: #5e971d;
    color: #fff;
    padding: 3px 15px;
    position: relative;
    text-align: center;
}

.answrrbox span:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 20px;
    border-width: 13px 10px 13px 10px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.answrrbox span:after {
    content: '';
    position: absolute;
    right: -7px;
    top: 0;
    bottom: 0;
    width: 20px;
    border-width: 13px 0px 13px 14px;
    border-style: solid;
    border-color: #ffffff #ffffff #ffffff #5e971d;
}

.react-confirm-alert-overlay {
    z-index: 9999 !important;
}

.react-confirm-alert-body>h1 {
    font-size: 24px !important;
    margin-bottom: 21px !important;
}

.react-confirm-alert-body {
    font-size: 14px;
    text-align: center !important;
}

.react-confirm-alert-button-group {
    justify-content: center !important;
}

.boxOption {
    padding: 10px 10px;
    background: #e9e9e9;
    align-items: center;
}

.minHeighbox {
    min-height: 55px;
}

.errorMsg {
    font-size: 13px;
    color: red;
    margin-bottom: 15px;
}

.qsnNotype {
    padding: 4px 7px;
    margin-right: 5px;
    background: #1160c1;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 10px 10px #00000024;
    font-size: 12px;
    white-space: nowrap;
}

.qsnWrapr {
    display: flex;
    display: -webkit-flex;
}

.qsnTitle {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.tagsListWrp {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
}

.tagsList {
    margin-right: 35px;
    margin-bottom: 5px;
    background: #faf0ea;
    padding: 3px 10px;
    border-radius: 5px;
    color: #4c4a4a;
    position: relative;
    font-weight: 600;
}

.tagRemove {
    position: absolute;
    right: -18px;
    top: 8px;
    bottom: 0;
    width: 12px;
    height: 15px;
}

.caseQussn p {
    margin-bottom: 0;
}

.version {
    text-align: center;
    padding: 10px 0 0;
    white-space: nowrap;
    font-size: 11px;
}

.left-sidebar-wrapper .version .vs-mobile {
    display: none;
}

.left-sidebar-wrapper .version .vs-web {
    display: block;
}

.mini-sidebar .left-sidebar-wrapper .version .vs-mobile {
    display: block;
}

.mini-sidebar .left-sidebar-wrapper .version .vs-web {
    display: none;
}

.bredcrumHead .breadcrumb {
    margin-bottom: 0;
}

.menu-hamburger {
    display: flex;
    display: -webkit-flex;
    align-items: center;
}

.bredcrumHead {
    margin-left: 10px;
}

table.table .extentTR>td {
    padding: 0;
}

.extentTR table.table {
    margin-bottom: 0;
    border: 0;
    border-bottom: 5px solid #00000014;
    background: #f1f1f1;
}

table.table th.th-1 {
    width: 1%;
    max-width: 30px;
}

.ext_icon.collapsed .plus {
    display: block;
}

.ext_icon.collapsed .minus {
    display: none;
}

.ext_icon .plus {
    display: none;
}

.ext_icon .minus {
    display: block;
}

.ext_icon {
    width: 30px;
    height: 30px;
    border: 1px solid #e1e1e1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #808080;
}

.ext_icon:hover {
    background-color: #f1f1f1;
    color: #333;
}

.metismenu>li>ul>li>a {
    padding-left: 35px !important;
}

.metismenu>li>ul {
    position: relative;
}

.metismenu>li>ul:before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #fff;
    z-index: 1;
}

.metismenu>li>ul>li {
    position: relative;
}

.metismenu>li>ul>li:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 11px;
    right: 0;
    width: 8px;
    height: 8px;
    background: #fff;
    z-index: 1;
    transform: translate(0, -50%);
    border-radius: 50%;
}

.multiSectionWrp {
    border: 1px solid #e1e1e1;
    padding: 10px;
    position: relative;
    margin: 40px 0;
}

.multiSectionHead {
    position: absolute;
    top: 0;
    left: 10px;
    right: 10px;
    transform: translate(0, -50%);
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: space-between;
    align-items: center;
}

.multiText {
    padding: 5px 21px;
    background: #f2f2f2;
    border: 1px solid #e1e1e1;
    border-radius: 15px;
}

.multiText h3 {
    font-size: 17px;
    margin: 0;
}

.multiText h4 {
    font-size: 14px;
    margin: 0;
}


.sectionGroup {
    background: #e2e2e2f7;
    padding: 10px;
    border: 1px solid #e1e1e1;
    margin: 20px 0;
}

.sectionGroupHead h5 {
    font-size: 15px;
    margin-bottom: 15px;
}

.sectionGroup:nth-last-child(1) {
    margin-bottom: 0;
}

.multiSectionWrp:nth-last-child(1) {
    margin-bottom: 0;
}

.custom-switch {
    padding: 0;
    width: 50px;
    height: 26px;
    margin-bottom: 0;
}

.switch-sm.custom-switch .custom-control-label {
    display: block;
    width: 100%;
    height: 100%;
}

.custom-switch .custom-control-label::before {
    left: 0;
    top: 0;
}

.switch-sm.custom-switch .custom-control-label::after {
    width: 20px;
    height: 20px;
    left: 3px;
    top: 3px;
}

.qusnIputwr {
    width: calc(100% - 80px);
}

.casestydl {
    margin-left: 10px;
}


.casestydl .switch-sm.custom-switch {
    width: 120px;
    height: 40px;
}

.casestydl .switch-sm.custom-switch .custom-control-label {
    background: #fff;
    border-radius: 26px;
    color: #262626;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: flex-end;
    padding: 10px 15px;
    text-transform: capitalize;
}

.casestydl .switch-sm.custom-switch .custom-control-label:before {
    content: none;
}

.casestydl .switch-sm.custom-switch .custom-control-label::after {
    top: 50%;
    transform: translate(0, -50%);
    left: 5px;
}

.casestydl .switch-sm.custom-switch .custom-control-input:checked~.custom-control-label::after {
    transform: translate(90px, -50%);
}

.casestydl .switch-sm.custom-switch .custom-control-input:checked~.custom-control-label {
    border-color: #6bbb04;
    background-color: #6bbb04;
    color: #fff;
    justify-content: flex-start;
}


.castyygrpu {
    border: 1px solid #f1f1f1;
    padding: 15px;
    background: #fff;
    margin-bottom: 15px;
}

.castyygrpu ul {
    margin: 0;
}

table.multi-row-table tr th {
    padding: 3px 12px;
    vertical-align: middle;
}

table.multi-row-table thead tr th:nth-child(1) {
    padding-left: 12px;
}

table.multi-row-table tr th[colspan] {
    border: 1px solid #dee2e6;
    text-align: center;
}

table.multi-row-table thead tr:nth-child(2) th {
    border: 1px solid #dee2e6;
}



.imagegroup {
    display: flex;
    display: -webkit-flex;
    width: 100%;
}

.previewImge {
    height: 41px;
}

.previewImge img {
    height: 100%;
}

.inputGroup {
    width: 100%;
}

.theme-4 thead {
    z-index: 1;
}
span.btn-sm {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}
.optdarinse {
    overflow: hidden;
    width: 100%;
    height: 40px;
    overflow-x: auto;
}
.csvBtn, .csvBtn:hover {background: green;color: #fff;font-size: 14px;padding: 7px 11px;border-radius: 5px; cursor: pointer;}

.csvBtn i {margin-right: 5px; font-size: 18px;}
.quesnParwrp{
    display: inline-block;
}
.optdarinse::-webkit-scrollbar {
    width: 8px;
    height:8px
}

.optdarinse::-webkit-scrollbar-track {
    background-color: #ffffff;
}

.optdarinse::-webkit-scrollbar-thumb {
    background:#c3c3c3;
    border-radius:10px;
    
}

.mini-sidebar .left-sidebar-wrapper .left-nav-menu {
    overflow-y: scroll !important;
}

.psostagrup {
    padding: 15px;
    border: 1px solid #c5c5c5;
    margin-bottom: 35px;
    border-radius: 7px;
    margin-top: 35px;
}

.accordion-item {
    border: 1px solid #e1e1e1;
    padding: 15px;
    border-radius: 5px;
    position: relative;
}

.accordion-header button {
    width: 100%;
    border: 1px solid #e1e1e1;
    outline: none;
    box-shadow: 0 0 0;
    border-radius: 7px;
    font-size: 14px;
    text-align: left;
    padding: 10px 15px;
    display: block;
    position: relative;
}

.accordion-body {
    padding-top: 15px;
}
.accordion-header button:before {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 14px;
    font-size: 20px;
    top: 50%;
    transform: translate(0,-50%);
}

.accordion-header button.accordion-button:not(.collapsed):before {
    content: '\f106';
}
.updownArrow {
    position: absolute;
    right: 11px;
    top: 8px;
    background: #f9f9f9;
}

.updownArrow i {
    display: block;
    width: 100%;
    padding: 5px 10px;
    cursor: pointer;
}
.updownArrow i:hover {
    background-color: #e1e1e1;
}
.tableWrpar {
    z-index: 0;
    position: relative;
}
.jodit-status-bar__item:nth-last-child(1) {
    display: none;
}
.multiselect {
    position: relative;
    z-index: 9;
}
.adsimage {
    width: 100px;
}

/* Like Count */
.like-count i {
    padding-right: 4px;
}
.pollsWrapper ._is6ww p {
    position: absolute;
    padding: 0;
    left: 20px;
    right: 70px;
    top: 50%;
    transform: translate(0,-50%);
    font-size: 14px;
}

.pollsWrapper ._3gEzx {
    position: relative;
    height: 50px;
}

.pollsWrapper h1 {
    font-size: 21px;
    margin-bottom: 25px;
    width: 100%;
}

.pollsWrapper {
    padding: 40px 0;
}
ul.has_menu {
    background: #8f5715;
}
.theme-4 thead {
    z-index: 9;
}
.questionWrps {
    padding: 30px 50px;
}

.questionWrps h4 {
    font-size: 20px;
    margin-bottom: 17px;
}

.questionWrps ol {
    padding-left: 15px;
}

.questionWrps ol li {
    padding: 7px 11px;
    font-size: 16px;
}
.questionWrps ol li a {
    cursor: pointer !important;
    color: #ab6d23 !important;
}
.css-b62m3t-container {
    z-index: 10;
}
.quiz-checkbox {
    width: 30px;
    height: 30px;
}


.quizgroup {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #00000017;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.quizhead h4 {
    font-size: 18px;
    color: #c18569;
    min-height: 44px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.quizhead h6 {
    font-size: 14px;
}

.quizhead {
    padding-left: 20px;
    position: relative;
}

.quizhead:before {
    content: '';
    position: absolute;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(285deg, #c78b6f 4%, #925136 100%, #fff 100%);
}

.quizAAction {
    text-align: right;
}

.quizAAction a {
    background: linear-gradient(285deg, #c78b6f 4%, #925136 100%, #fff 100%);
    color: #fff;
    padding: 5px 15px;
    display: inline-block;
    border-radius: 5px;
}

.quizhead p {
    font-size: 14px;
    color: #757575;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.badge-ribbon {
    position: absolute;
    background: #be8165;
    width: 20%;
    aspect-ratio: 1;
    border-radius: 50px;
    top: 10px;
    right: 10px;
    z-index: -1;
    opacity: 0.1;
}
.badge-ribbon:before,
.badge-ribbon:after {
    content: '';
    position: absolute;
    border-bottom: 60px solid #be8165;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    top: 40px;
    left: -10px;
    transform: rotate(-140deg);
}
.badge-ribbon:after {
    left: auto;
    right: -10px;
    transform: rotate(140deg);
}
.questionHead h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #444;
}

.questionHead h4 {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 22px;
    color: #6d6d6d;
}

.questionCheck {
    display: flex;
    display: -webkit-flex;
    width: 100%;
    cursor: pointer;
}

.qusnOptInput {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.qusnOptInput input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.qusnOptText {
    font-size: 14px;
}

.questionHead {
    margin-bottom: 30px;
}

.questionGroup {
    margin-bottom: 20px;
    background: #ffffff;
    padding: 25px;
    border-radius: 7px;
    transition: all 0.3s ease-in-out;
}

.questionGroup:hover {
    box-shadow: -6px 4px 8px 0px #00000030;
}

.quizDetailsWrapper {
    margin-bottom: 60px;
}
.qsnQcountwRp ul {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
}

.qsnQcountwRp ul li {
    list-style: none;
    padding: 7px;
}

.qsnQcountwRp ul li a {
    display: flex;
    display: -webkit-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid #bfbfbf;
    color: #232323;
    border-radius: 50%;
}

.qsnQcountwRp {
    margin-bottom: 20px;
}

.fintSubmtp button {margin:  auto;display: block;min-width: 100%;border-radius: 5px;}

.quizsubmitWRp {
    position: sticky;
    top: 80px;
}
.ans-green {
    background: #ac6d52 !important;
    color: #fff !important;
    border-color: #ac6d52 !important;
}
.ans-red {
    background: #E91E63 !important;
    color: #fff !important;
    border-color: #E91E63 !important;
}
input[type="radio"]:checked {
    accent-color: #ac6d52;
}
.categoryMianWrpr {
    padding-bottom: 30px;
}
.optionAns {
    /* background: #; */
}

.questionCheck {
    align-items: c;
}

.questionCheck.correct {
    background: #8BC34A;
}

.questionCheck {
    padding: 6px 8px;
    border-radius: 5px;
}

.questionCheck.incorrect {
    background: #FF5722;
}
.quzStarbsorp {
    margin: 40px 0;
    background: #fff;
    box-shadow: 0 0 10px #0000001c;
    padding: 30px 30px;
    border-radius: 15px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.quizBsdt h4 {
    font-size: 16px;
    color: #616161;
    margin-bottom: 20px;
}

.quizBsdt {
    text-align: center;
}

.quizBsdt h6{
    font-size: 24px;
    margin: 0;
    color: #3a3a3a;
}

.quizBsdt p {
    font-size: 14px;
    margin: 0;
}

.quizBsdt a {
    background: #000;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 7px;
    color: #fff !important;
    cursor: pointer !important;
}

.qustidEtatp img {
    margin-bottom: 30px;
    width: 100%;
}

.qustidEtatp h2 {
    font-size: 25px;
    margin-bottom: 20px;
}

.qustidEtatp {
    margin-bottom: 60px;
}
.timerLQuiz {
    text-align: center;
    margin-bottom: 15px;
}
.c-list__grid {
    cursor: pointer;
}
.griPosSticky {
    position: sticky;
    top: 0;
}
.readmorebtn{
    color: #ab6d23;
    cursor: pointer;
}
.comentbsrp {
    word-wrap: break-word;
}
.viewMrModlwrp .modal-header .btn-close {
    font-size: 20px;
}
.react-datepicker-popper {
    z-index: 999 !important;
}
.posRelt {
    position: relative;
    z-index: 99;
}
.emogiswrp {
    display: flex;
    gap: 9px;
    align-items: center;
}

.emgi_img img {
    width: 20px;
}
.currentEmogi {
    font-size: 12px;
    display: flex;
    align-items: center;
}
.emgi_img {
    color: #925136;
}
/* span.emgi_img {
    cursor: pointer;
} */
.searchIndex {
    /* position: relative;
    z-index: 11; */
}
.searchIndex .css-b62m3t-container{
    z-index: inherit;
}
.searchIndex .multiselect{
    z-index: inherit;
}
.inMT {
    margin-top: 40px;
}
.btnsGroupWidget {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 30px;
    gap: 15px;
}

.btnsGroupWidget button, .btnsGroupWidget span.trash {
    display: inline-block;
    margin: 0;
}

.btnsGroupWidget span.trash {
    margin-top: 10px;
}
.react-datepicker-wrapper{
    display: block;
    width: 100%;
}
.react-datepicker__input-container input.datepicker-size-sm {
    font-size: 0.8rem;
    padding: 4px 8px;
    height: 28px;
    display: block;
}


@keyframes color-effect1 {
    0% {
        background: #2ec3ec
    }
    50% {
        background: #138fba
    }
    to {
        background: #00bcf0
    }
}

@keyframes color-effect2 {
    0% {
        background: #ffb347;
    }
    50% {
        background: #ffcc33;
    }
    to {
        background: #ff9900;
    }
}

@keyframes color-effect3 {
    0% {
        background: #ff5e62;
    }
    50% {
        background: #ff9966;
    }
    to {
        background: #ff7eb3;
    }
}

@keyframes color-effect4 {
    0% {
        background: #43cea2;
    }
    50% {
        background: #185a9d;
    }
    to {
        background: #2b5876;
    }
}

@keyframes color-effect5 {
    0% {
        background: #f7971e;
    }
    50% {
        background: #ffd200;
    }
    to {
        background: #f7971e;
    }
}

/* New color effects */
@keyframes color-effect6 {
    0% {
        background: #8e54e9;
    }
    50% {
        background: #4776e6;
    }
    to {
        background: #43cea2;
    }
}

@keyframes color-effect7 {
    0% {
        background: #ff512f;
    }
    50% {
        background: #dd2476;
    }
    to {
        background: #ff512f;
    }
}

@keyframes color-effect8 {
    0% {
        background: #11998e;
    }
    50% {
        background: #38ef7d;
    }
    to {
        background: #11998e;
    }
}

@keyframes color-effect9 {
    0% {
        background: #fc5c7d;
    }
    50% {
        background: #6a82fb;
    }
    to {
        background: #fc5c7d;
    }
}

@keyframes color-effect10 {
    0% {
        background: #f7971e;
    }
    50% {
        background: #ffd200;
    }
    to {
        background: #f7971e;
    }
}

/* Classes for using the color effects */
.color-effect1 {
    animation: color-effect1 1s infinite alternate;
}

.color-effect2 {
    animation: color-effect2 1s infinite alternate;
}

.color-effect3 {
    animation: color-effect3 1s infinite alternate;
}

.color-effect4 {
    animation: color-effect4 1s infinite alternate;
}

.color-effect5 {
    animation: color-effect5 1s infinite alternate;
}

.color-effect6 {
    animation: color-effect6 1s infinite alternate;
}

.color-effect7 {
    animation: color-effect7 1s infinite alternate;
}

.color-effect8 {
    animation: color-effect8 1s infinite alternate;
}

.color-effect9 {
    animation: color-effect9 1s infinite alternate;
}

.color-effect10 {
    animation: color-effect10 1s infinite alternate;
}











