*,
*::before,
*::after {
    box-sizing: border-box;
}

h1,h2,h3,h4,h5,h6 { color:#21272A; font-weight:600; }

.scaling { -webkit-animation: scale 3s infinite linear; animation: scale 15s infinite linear; }
.movebounce { -webkit-animation: movebounce-up 6s infinite linear; animation: movebounce-up 6s infinite linear; }
.moving { -webkit-animation: moveIn-to 20s infinite linear; animation: moveIn-to 20s infinite linear; }
.rotated { -webkit-animation: rotated360 25s infinite linear; animation: rotated360 25s infinite linear; }
.rotated30 { -webkit-animation: rotated30 5s infinite linear; animation: rotated30 5s infinite; }
@-webkit-keyframes movebounce-up {
    0% { -webkit-transform: translateY(0px); transform: translateY(0px) }
    50% { -webkit-transform: translateY(-30px); transform: translateY(-30px) }
    100% { -webkit-transform: translateY(0px); transform: translateY(0px) }
}
@keyframes movebounce-up {
    0% { -webkit-transform: translateY(0px); transform: translateY(0px) }
    50% { -webkit-transform: translateY(-30px); transform: translateY(-30px) }
    100% { -webkit-transform: translateY(0px); transform: translateY(0px) }
}
@-webkit-keyframes moveIn-to {
    0% { -webkit-transform: translate(0, 0); transform: translate(0, 0) }
    50% { -webkit-transform: translate(50px, 0); transform: translate(50px, 0) }
    100% { -webkit-transform: translate(0, 0); transform: translate(0, 0) }
}
@keyframes moveIn-to {
    0% { -webkit-transform: translate(0, 0); transform: translate(0, 0) }
    50% { -webkit-transform: translate(50px, 0); transform: translate(50px, 0) }
    100% { -webkit-transform: translate(0, 0); transform: translate(0, 0) }
}
@-webkit-keyframes rotated360 {
    0% { -webkit-transform: rotateZ(0deg); transform: rotateZ(0deg) }
    100% { -webkit-transform: rotateZ(-360deg); transform: rotateZ(-360deg) }
}
@keyframes rotated360 {
    0% { -webkit-transform: rotateZ(0deg); transform: rotateZ(0deg) }
    100% { -webkit-transform: rotateZ(-360deg); transform: rotateZ(-360deg) }
}
@-webkit-keyframes rotated30 {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) }
    100% { -webkit-transform: rotate(-10deg); transform: rotate(-10deg) }
    100% { -webkit-transform: rotate(0deg); transform: rotate(0deg) }
}
@keyframes rotated30 {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) }
    50% { -webkit-transform: rotate(-10deg); transform: rotate(-10deg) }
    100% { -webkit-transform: rotate(0deg); transform: rotate(0deg) }
}
@-webkit-keyframes scale {
    0% { -webkit-transform: scale(1); transform: scale(1) }
    100% { -webkit-transform: scale(1.3); transform: scale(1.3) }
    100% { -webkit-transform: scale(1); transform: scale(1) }
}
@keyframes scale {
    0% { -webkit-transform: scale(1); transform: scale(1) }
    50% { -webkit-transform: scale(1.3); transform: scale(1.3) }
    100% { -webkit-transform: scale(1); transform: scale(1) }
}

/*1. Animate css, 2. Smartmenus css, 3. Slick css, 4. Reset css, 5. Core css, 6. custom css*/

/* =================animate css starts here================= */
.animated { -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both; }
@-webkit-keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.fadeIn { -webkit-animation-name: fadeIn; animation-name: fadeIn; }
@-webkit-keyframes fadeInUp {
    from { opacity: 0; -webkit-transform: translate3d(0, 30px, 0); transform: translate3d(0, 30px, 0); }
    to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
}
@keyframes fadeInUp {
    from { opacity: 0; -webkit-transform: translate3d(0, 30px, 0); transform: translate3d(0, 30px, 0); }
    to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
}
.fadeInUp { -webkit-animation-name: fadeInUp; animation-name: fadeInUp; }

/* =================animate css ends here================= */







.custom-control {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    -webkit-print-color-adjust: exact;
    color-adjust: exact
}

.custom-control-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1rem
}

.custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #007bff;
    background-color: #007bff;
    box-shadow: none
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: inset 0 0 0 transparent,0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: #80bdff
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
    color: #fff;
    background-color: #b3d7ff;
    border-color: #b3d7ff;
    box-shadow: none
}

.custom-control-input:disabled~.custom-control-label,.custom-control-input[disabled]~.custom-control-label {
    color: #6c757d
}

.custom-control-input:disabled~.custom-control-label::before,.custom-control-input[disabled]~.custom-control-label::before {
    background-color: #e9ecef
}

.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top
}

.custom-control-label::before {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 1.2rem;
    height: 1.2rem;
    pointer-events: none;
    content: "";
    background-color: #dee2e6;
    border: #adb5bd solid 1px;
    box-shadow: inset 0 .25rem .25rem rgba(0,0,0,.1)
}

.custom-control-label::after {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: 50%/50% 50% no-repeat
}


.custom-control-label::after {
    background-image: none !important;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    left: -20px;
    background-color: #A56EFF !important;
    top: 7px;
    transform: scale(0);
    transition: all .3s ease-in;
}

.custom-control-label::before {
    background-color: transparent !important;
    border-radius: 10px !important;
    border-color: #A56EFF !important;
    top: 2px;
    box-shadow: none !important;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    transform: scale(1);
}

.custom-control-input:checked~.custom-control-label::before {
    border-color: #A56EFF !important;
    box-shadow: none;
}

.custom-checkbox .custom-control-label::before {
    border-radius: .25rem
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before {
    border-color: #007bff;
    background-color: #007bff;
    box-shadow: none
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")
}

.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(0,123,255,.5)
}

.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before {
    background-color: rgba(0,123,255,.5)
}

.custom-radio .custom-control-label::before {
    border-radius: 50%
}

.custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
    background-color: #A56EFF !important;
    transform: scale(1);
}

.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(0,123,255,.5)
}



.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E") !important;
    background-color: #A56EFF  !important;
    border-radius: 4px !important;
    width: 22px;
    height: 22px;

}

.custom-checkbox .custom-control-input~.custom-control-label::after {
    left: -23px;
    top: 2px;
}
.custom-checkbox .custom-control-input~.custom-control-label::before {
    width: 22px;
    height: 22px;
    border-radius: 4px !important;
    box-shadow: none;
    border-width: 2px;
}
.custom-checkbox label.custom-control-label {
    padding-left: 8px;
}
.modal-header {
    background: transparent;
}

.modal-title {
    font-weight: 500;
    font-size: 22px;
    line-height:29px;
    letter-spacing: 0.32px;
    color: #21272A;
    text-align: left;
}

.modal-header button.btn-close {
    position: absolute;
    right: 18px;
    top: 18px;
    opacity: 1;
}

.cut { cursor:pointer; }

/*otp css*/


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.otp-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 20px;
}
.mr-inner-content p {
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    color: #33198A;
}
.otp-form-wrapper .form-control {
    width: 65px;
    height: 65px;
    margin-right: 15px;
    background: #F6F2FF !important;
    border-bottom: 1px solid #31135E;
    text-align: center;
    font-size: 20px;
}
.form-control:focus {
    border-color: #000;
}
.code-inputs {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

/* otp css ends */

.member-left {
    background:transparent;
    padding:0;
    position:relative;
}

.member-right {
  margin-left: 0;
}

.hover-logo {
    position: absolute;
    top: 6%;
    left: 5%;
}

img.hover-img {
    max-width: 250px;
}

.login-ovrlaybox {
    position: absolute;
    background: #1C1C1C;
    width: 80%;
    left: 0;
    right: 0;
    margin: auto;
    padding: 15px;
    bottom: 15%;
}

.login-ovrlaybox h4 {
    font-weight: 600;
    font-size: 30px;
    line-height: 41px;
    letter-spacing: 0.02em;
    color: #E8BE2A;
}

.login-ovrlaybox p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: justify;
    letter-spacing: -0.065em;
    color: #FFFFFF;
}
a{ text-decoration:none; }
.formlinks a {
    font-weight: 400;
    font-size: 17px;
    color: #33198A;
}

.formlinks {
    text-align: right;
}


/*sidebar*/

#body-row {
    margin-left:0;
    margin-right:0;
}
#sidebar-container {
    min-height: 100vh;
    background-color: #fff;
    padding: 0;
    border-right: 1px solid #D4BBFF;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Sidebar sizes when expanded and expanded */
.sidebar-expanded {
    width: 230px;
}
.sidebar-collapsed {
    width:70px;
}

/* Menu item*/
#sidebar-container .list-group a {
    height: 50px;
    color: #000;
}

/* Submenu item*/
#sidebar-container .list-group .sidebar-submenu a {
    padding-left: 10px;
    width: 90%;
    margin-left: 20px;
    height: auto;
    margin-bottom: 5px;

}
.sidebar-submenu {
    font-size: 0.9rem;
}

/* Separators */
.sidebar-separator-title {
   
}
.sidebar-separator {
    height: 25px;
}
.logo-separator {
    height: 68px;
    padding: 18px 12px;
}
span.closed img {
    width: 16px;
    position: absolute;
    right: 12px;
    top: 25px;
    cursor: pointer;
}
/* Closed submenu icon */
#sidebar-container .list-group .list-group-item[aria-expanded="false"] .submenu-icon::after {
  content: " \f078";
  font-family: "FontAwesome";
  display: inline;
  text-align: right;
  padding-left: 10px;
}
/* Opened submenu icon */
#sidebar-container .list-group .list-group-item[aria-expanded="true"] .submenu-icon::after {
  content: " \f077";
  font-family: "FontAwesome";
  display: inline;
  text-align: right;
  padding-left: 10px;
}


nav.main-header {
    display: block;
}

.date_wrpr {
    display: flex;
    justify-content: center;
}
.notf_profl {
    display: flex;
    justify-content: space-around;
    background: #fff;
    align-items: center;
    padding: 10px 15px;
    max-width: 350px;
    border-radius: 14px;
    width: 100%;
}

.notf_wrpr {
    display: flex;
    justify-content: flex-end;
    position: relative;
    margin-top: -30px;
}

.notf_profl p {
    margin: 0;
}

.voilet {
    color: #8A3FFC;
}

a.notif_click {
    border: 1px solid #DDE1E6;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    width: 40px;
    height: 40px;
    align-items: center;
}

a.notif_click img {
    width: 25px;
}

.profl_pic {
    background: #D4BBFF;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top_daydate {
    position: relative;
    top: 15px;
    font-weight: 500;
    font-size: 22px;
    line-height: 16px;
    letter-spacing: 0.32px;
    color: #21272A;
}

span.daydate {
    color: #8A3FFC;
}



.updates_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFF2E8;
    border: 2px solid #FF832B;
    border-radius: 10px;
    padding: 15px;
}

.updt_txt {
    display: flex;
    align-items: center;
}

.updt_txt p {
    margin: 0;
    padding-left: 10px;
}

a.site_btn {
    background: #491D8B;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    padding: 5px 18px;
}

span.cut {
    margin: 0 10px;
}

span.cut i {
    font-size: 18px;
    color: #626262;
}

.hdng_btn {
    display: flex;
    justify-content: space-between;
}

.add_wdgt {
    padding-right: 15px;
    padding-top: 5px;
}


.crd_hdng_btn {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid #F7F3F2;
    margin-bottom: 15px;
    align-items: center;
}

.crd_hdng_btn h4 {
    font-weight: 500;
    font-size: 18px;
    color: #21272A;
    margin: 0;
}

.crd_hdng_btn h4 i {
    margin-left: 5px;
}

.crd_txt h6 {
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0.02em;
    color: #21272A;
    margin: 0;
}

.crd_txt p {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.02em;
    color: #121619;
    margin-bottom: 0;
}

.card_data .two_data:nth-child(even) {
    background: #F6F2FF;
}

.two_data {
    padding: 10px 5px;
}
.table_hdng {
    border-bottom: 1px solid #b787ff;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.srvrtxt p {
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    display: flex;
    align-items: center;
    color: #000000;
    margin-bottom: 5px;
}

a.footrbtn {
    background: #6929C4;
    border-radius: 34px;
    color: #fff;
    padding: 15px;
}

.ftrbtn_row {
    padding: 0px;
    margin: 25px 0;
    text-align: right;
}
.footrbtn span {
    background: #fff;
    color: #6929c4;
    padding: 7px;
    border-radius: 50%;
    display: inline-block;
    height: 25px;
    width: 25px;
    font-weight: 600;
    line-height: 10px;
    margin-left: 8px;
}

.sidebar-submenu a.list-group-item {
    border: 0;
}
.form-group {
    margin-bottom: 1rem;
}

.select2-container--default .select2-selection--single {
    padding: 0.46875rem 0.75rem;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
}
.sidebar-submenu:before {
    content: '';
    position: absolute;
    left: 27px;
    right: 0;
    z-index: 99;
    top: 10px;
    width: 2px;
    height: calc(100% - 32px);
    background: #D4BBFF;
}

.sidebar-submenu {
    padding-left: 25px;
    position: relative;
    margin-top: 5px;
}

.sidebar-submenu a.list-group-item {
    position: relative;
}

.sidebar-submenu a.list-group-item:before {
    content: '';
    position: absolute;
    left: -18px;
    top: 18px;
    width: 14px;
    height: 6px;
    z-index: 9999;
    border-radius: 8px;
    border: 2px solid #D4BBFF;
    border-top: 0;
    border-right: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}

span.tooltipp {
    margin-left: 5px;
    color: #606060;
}

span.tooltipp i {
    font-weight: 400;
}

.bottom-logout {
    position: absolute;
    bottom: 5%;
    max-width: 229px;
    width: 100%;
    left: 0;
    border: 0;
}

.list-group-item {
    border: 0;
}
.submenu-icon { display:none; }

.opacity-0 {
    opacity: 0;
}

.opacity-0.d-block {
    opacity: 1;
}
.card {
    transition: all 0.5s;
    box-shadow: 0 0 1px rgba(0,0,0,.125), 0 1px 3px rgba(0,0,0,.2);
    margin-bottom: 1rem;
}
.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: 0 solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
}
.card:hover {
    box-shadow: rgba(145, 158, 171, 0.2) 0px 0px 2px 0px, rgba(145, 158, 171, 0.12) 0px 12px 24px -4px !important;
}

span.menu-collapsed.d-none.d-block {
    display: block !important;
    width: 100%;
}

.mr-3 {
    margin-right: 12px;
}
.site_hdng h2 {
    font-size: 30px;
    color: #8A3FFC;
}
.form-switch .form-check-input:checked {
    background-color: #198038;
    border-color: #198038;
}
table td ,th { border-left:0px; border-right:0px; }
.form-switch .form-check-input {
    height:1.25rem;
    width:2.25em;
}

th span {
    margin-left:5px;
}

.profl_click .profl_pic:after, .notf_profl a.dropdown-toggle.notif_click:after {
    display: none;
}
.crd_hdng_btn h4 span {
    margin-left: 5px;
}
.px-7 {
    padding-left: 25px;
    padding-right: 25px;
}

.py-6 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.notf_wrpr span.badge {
    background-color: #d4bbff !important;
    color: #38332f;
}

.mx-7 {
    margin-right: 30px!important;
    margin-left: 30px!important;
}
.py-9 {
    padding-top: 20px!important;
    padding-bottom: 20px!important;
}
.logoutrwo .btn {
    width: 100%;
    text-align: center;
    display: inline-block;
    background: transparent;
    color: #491D8B;
    transition: all 0.5s;
    border: 1px solid #491D8B;
}

.logoutrwo .btn:hover{
    background: #491D8B;
    color:#fff;
    border:1px solid #491D8B;
}

.ddbtns {
    text-align: center;
    display: inline-block;
    border: 1px solid #491D8B;
}

.ddbtns:hover {
    background: transparent;
    color: #000;
    border: 1px solid #000;
}
.list-group-item-action:focus, .list-group-item-action:hover {
   background: #E8DAFF;
   border-radius: 4px 0px 0px 4px;
}

span.is_newnotification {
    position: absolute;
    background: red;
    width: 10px;
    height: 10px;
    right: 10px;
    top: 7px;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(105,41,196, 0.6);
    animation: pulse 2s infinite;
}
.pulse:hover {
  animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(105,41,196, 0.6);
    box-shadow: 0 0 0 0 rgba(105,41,196, 0.6);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(105,41,196, 0);
      box-shadow: 0 0 0 10px rgba(105,41,196, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(105,41,196, 0);
      box-shadow: 0 0 0 0 rgba(105,41,196, 0);
  }
}


div.dataTables_wrapper div.dataTables_filter input {
    width: 250px;
    background: #F4F4F4;
    border-bottom: 1px solid #D4BBFF;
}
.card-mid-header {
    padding: 1.5rem 1rem 0.5rem;
    margin-bottom: 0;
    margin-top: 20px;
    border-top: 1px solid #d3d3d4;
}

.card-header {
    background: transparent;
    padding: 20px 20px 15px;
}

.card-title {
    font-weight: 600;
    font-size: 22px;
    line-height: 16px;
    letter-spacing: 0.32px;
    color: #21272A;
    margin: 0;
}

td.table_drpdwn {
    position: relative;
}

.table_drpdwn .dropdown-toggle::after{
     display:none;
}

.table_drpdwn .dropdown-menu {transform: translate(0px, 25px) !important;
    padding: 0;
    background: #FFFFFF;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    border: 0;
    left: 0px !important;
    min-width: auto;
}
    .table_drpdwn {
        position: relative;
    }
    .smdl_txt {
        text-align: center;
    }
.table_drpdwn .dropdown-menu ul {list-style:none;padding: 0;margin: 0;}

.table_drpdwn .dropdown-menu ul li {
    padding: 10px 10px;
    border-bottom: 1px solid #C1C7CD;
}

.table_drpdwn .dropdown-menu ul li a{
 font-weight: 400;
 font-size: 14px;
 line-height: 16px;
 letter-spacing: 0.32px;
 color: #4D5358;
}




.topdash-info {
    border-radius: 15px;
    background: #FFF;
    align-items: center;
    padding: 20px;
    margin-bottom: 25px;
}

.topdash-info p {
    margin: 0;
    color: #343A3F;
    font-size: 18px;
    font-weight: 500;
    line-height: 16px; /* 88.889% */
    letter-spacing: 0.32px;
}

.topdash-info p span {
    color: #002D9C;
}

.topdash-info p span.red {
    color: #DA1E28;
}

.infwrp:after {
    content: '';
    position: absolute;
    height: 40px;
    width: 3px;
    background: #002D9C;
    right: -30%;
    top: -12px;
    border-radius: 2px;
}

.infwrp {
    position: relative;
}

.infwrp:last-child::after{ display:none; }

.dashtable  table {
    background: #fff;
}

.dashtable table th {
    background: #D0E2FF !important;
    font-weight: 700;
}

.dashtable table td {color: #121619;}

span.green {
    color: #0E6027;
}

span.red {
    color: #DA1E28;
}


.drop-zone {
  max-width: 200px;
  height: 200px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 20px;
  cursor: pointer;
  color: #cccccc;
  border: 4px dashed #009578;
  border-radius: 10px;
}

.drop-zone--over {
  border-style: solid;
}

.drop-zone__input {
  display: none;
}

.drop-zone__thumb {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  background-color: #cccccc;
  background-size: cover;
  position: relative;
}

.drop-zone__thumb::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  text-align: center;
}







@media(min-width:1400px) {
 .container-fluid { 
    max-width:1500px; 
   /*  width:98%; */
 }

}

@media(min-width:1200px) {
 .container-fluid { 
    /* max-width:1500px; */
    width:98%; 
 }

}

/* .upload_file input { display: none; }
.upload_file input + label { background: #f3f3f3; padding: 10px; width: 100%; text-align: center; color: #000; font-size: 14px; font-weight: 500; cursor: pointer; transition: all .3s ease-in; }
.upload_file input + label img { margin-right: 5px; }
.upload_file input + label:hover { background: #e5e5e5; }
.uploadProfilePic_wrapper .upload_img_dragable { width: 110px; height: 110px; background: #F4F4F4; margin-bottom: 0;  display: flex; align-items: center; justify-content: center; padding: 10px; margin-right: 10px; }
.uploadProfilePic_wrapper .upload_img_dragable img { max-width: 100%; }
 */


.upload-btn {
    padding: 10px;
    border: 1px solid;
}
#imagePreview {
    width: 120px;
    height: 120px;
    background-position: center center;
    background-size: cover;
    display: inline-block;
    background-image: url('../img/photo.png');
    cursor: pointer;
}

#uploadFile{
  display: none
}



#search-list, #search-list2, .search-list, #suggesstion-box-user, #suggesstion-box-city {float:left;list-style:none;margin-top:-3px;padding:0;width:240px;position: absolute; z-index:1;}
#search-list li, #search-list2 li, .search-list li, #suggesstion-box-user li,#suggesstion-box-city li{padding: 10px; background: #f0f0f0; border-bottom: #bbb9b9 1px solid; display: list-item; text-align: -webkit-match-parent;}
#search-list li:hover,#search-list2 li:hover,.search-list li:hover, #suggesstion-box-user li:hover, #suggesstion-box-city li:hover {background:#ece3d2;cursor: pointer;}
