/* 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;
}



.commenSectionWrp {
    border: 1px solid #e1e1e1;
    padding: 10px;
    position: relative;
    margin-bottom: 30px;
}