/** initial setup **/
.nano {
   position: relative;
   width: 100%;
   height: 100%;
   overflow: hidden;
}

.nano>.nano-content {
   position: absolute;
   overflow: scroll;
   overflow-x: hidden;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
}

.nano>.nano-content:focus {
   outline: thin dotted;
}

.nano>.nano-content::-webkit-scrollbar {
   display: none;
}

.has-scrollbar>.nano-content::-webkit-scrollbar {
   display: block;
}

.nano>.nano-pane {
   background: rgba(0, 0, 0, .25);
   position: absolute;
   width: 10px;
   right: 0;
   top: 0;
   bottom: 0;
   visibility: hidden\9;
   /* Target only IE7 and IE8 with this hack */
   opacity: .01;
   -webkit-transition: .2s;
   -moz-transition: .2s;
   -o-transition: .2s;
   transition: .2s;
   -moz-border-radius: 5px;
   -webkit-border-radius: 5px;
   border-radius: 5px;
}

.nano>.nano-pane>.nano-slider {
   background: #444;
   background: rgba(0, 0, 0, .5);
   position: relative;
   margin: 0 1px;
   -moz-border-radius: 3px;
   -webkit-border-radius: 3px;
   border-radius: 3px;
}

.nano:hover>.nano-pane,
.nano-pane.active,
.nano-pane.flashed {
   visibility: visible\9;
   /* Target only IE7 and IE8 with this hack */
   opacity: 0.99;
}

html#lexmatch .btn.btn-add-candidate {
   padding: 10px 21px;
   background-color: #CBCBCB;
   border-color: #CBCBCB;
   color: #828282;
}

.text-job-post-details {
   font-weight: 500;
   font-size: 12px;
   line-height: 18px;
   color: #B6B6B6;
}

.match-tabs {
   display: flex;
   flex-direction: row;
   border-top: 1px solid #F2F2F2;
   border-bottom: 1px solid #F2F2F2;
   margin-left: -8px;
   margin-right: -8px;
   margin-top: 31px;
   margin-bottom: 30px;
}

.match-tabs .match-tabs-tab {
   flex: 1 1 12.5%;
   position: relative;
   padding: 0 8px;
}

html#lexmatch body .match-tabs .match-tabs-tab a {
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 15px 0;
   text-align: center;
   color: #000000;
   font-weight: 500;
   font-size: 12px;
   position: relative;
}

.match-tabs .match-tabs-tab a span.total {
   display: inline-block;
   width: 30px;
   height: 30px;
   line-height: 30px;
   text-align: center;
   background: #EBF2F5;
   border-radius: 36px;
   font-size: 10px;
   color: #304F5D;
   margin-left: 8px;
}

.match-tabs .match-tabs-tab+.match-tabs-tab::before {
   content: "";
   width: 1px;
   height: 30px;
   background-color: #B6B6B6;
   position: absolute;
   left: 0;
   top: 50%;
   transform: translateY(-50%);
}

.match-tabs .match-tabs-tab a::after {
   content: "";
   background: #F3C623;
   width: 0%;
   height: 3px;
   position: absolute;
   bottom: 1px;
   left: 0;
   transition: width .2s ease-in;
}

.match-tabs .match-tabs-tab.match-tabs-tab-active a::after,
.match-tabs .match-tabs-tab a:hover::after {
   width: 100%;
}

.match-filters {
   background: #EBF2F5;
   position: relative;
   padding: 16px 0;
   display: flex;
   justify-content: space-between;
}

.match-filters::before,
.match-filters::after {
   content: "";
   position: absolute;
   width: 100vw;
   height: 100%;
   background: #EBF2F5;
   top: 0;
}

.match-filters::before {
   left: 100%;
}

.match-filters::after {
   right: 100%;
}

.match-filters label {
   margin-bottom: 0;
   margin-left: 15px;
   position: relative;
   display: flex;
   align-items: center;
   cursor: pointer;
}

.match-filters label+label {
   margin-left: 30px;
}

.match-filters span.title {
   font-weight: 500;
   font-size: 16px;
}

label.checkbox-tick {
   display: flex;
   align-items: center;
}

label.checkbox-tick input {
   display: none;
}

label.checkbox-tick span.checkmark {
   display: block;
   border: 2px solid #C2C9D1;
   border-radius: 2px;
   width: 18px;
   height: 18px;
   margin-right: 12px;
   position: relative;
}

label.checkbox-tick span.text {
   font-size: 14px;
   color: #000;
   display: flex;
   align-items: center;
   line-height: 18px;
}

label.checkbox-tick span.text img {
   margin-left: 5px;
}

label.checkbox-tick span.checkmark:after {
   content: "";
   background: url(../image/checkmark.svg) top left no-repeat;
   background-size: 100%;
   width: 16px;
   height: 16px;
   opacity: 0;
   transition: opacity .2s ease-in;
   position: absolute;
   top: -1px;
   left: -1px;
}

label.checkbox-tick input:checked~.checkmark:after {
   opacity: 1;
}

.match-filters .left {
   display: flex;
   align-items: center;
}

html#lexmatch .btn.btn-advanced-filters {
   border-radius: 26px;
   background: #5790A9;
   border-color: #5790A9;
   color: #FFFFFF;
   font-size: 12px;
   line-height: 13px;
   padding: 10px 35px;
   font-weight: 500;
}

html#lexmatch .btn.btn-advanced-filters:hover {
   background-color: #fff;
   color: #5790A9;
}

.expand-filters-container {
   position: relative;
   min-height: 500px;
   padding-top: 35px;
}

.expand-filters {
   position: absolute;
   width: 100%;
   left: -100%;
   opacity: 0;
   top: 0;
   height: calc(100% + 100px);
   transition: all .2s ease-in;
}

.expand-filters.active {
   left: 0;
   opacity: 1;
}

.expand-filters .filters-section {
   width: 66.6667%;
   height: 100%;
   position: relative;
}

.expand-filters .filters-section .content {
   background-color: #fff;
   position: relative;
   height: 100%;
   padding-top: 15px;
   padding-right: 15px;
   padding-bottom: 100px;
}

.expand-filters .filters-section .content::before {
   content: "";
   position: absolute;
   top: 0;
   right: 100%;
   background-color: #fff;
   width: 100vw;
   height: 100%;
}

.expand-filters .filters-section .cta {
   background-color: #EBF2F5;
   position: relative;
   padding: 24px 24px 20px 20px;
   text-align: right;
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
}

.expand-filters .filters-section .cta::before {
   content: "";
   position: absolute;
   top: 0;
   right: 100%;
   background-color: #EBF2F5;
   width: 100vw;
   height: 100%;
}

.expand-filters .filters-section .cta a+a {
   margin-left: 12px;
}

html#lexmatch .filters-section .btn.btn-standard {
   min-width: 150px;
}

.nano>.nano-content {
   padding-top: 35px;
}

body.filters-active {
   position: relative;
}

body.filters-active:before {
   content: "";
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: #000;
   opacity: .3;
   z-index: 999;
}

body.filters-active .match-filters,
body.filters-active .expand-filters {
   z-index: 1000;
}

.expand-filters .form-group {
   max-width: 420px;
   margin-bottom: 24px;
}

.expand-filters .form-group.form-group-full {
   width: 100%;
   max-width: unset;
}

.expand-filters label.checkbox-tick {
   margin-bottom: 14px;
}

.expand-filters label.checkbox-tick span.checkmark {
   width: 14px;
   height: 14px;
   margin-right: 8px;
   border: 1px solid #696969;
}

.expand-filters label.checkbox-tick span.text {
   font-weight: bold;
   font-size: 16px;
   color: #5790A9;
}

.expand-filters label.checkbox-tick span.checkmark:after {
   width: 12px;
   height: 12px;
   top: 0;
   left: 0;
}

.expand-filters label.checkbox-tick input:checked~.checkmark {
   border-color: #5790A9;
}

.expand-filters label.checkbox-tick span.text {
   line-height: 14px;
}

html#lexmatch .expand-filters input[type="text"].form-control::placeholder {
   color: #5790A9;
   font-size: 14px;
}

.expand-filters .input-acc {
   max-height: 0;
   overflow: hidden;
   transition: max-height .2s ease-in-out;
}

.expand-filters #input-year-range .separator {
   max-width: 30px;
   text-align: center;
   color: #CBCBCB;
   flex: 1 1 30px;
   display: flex;
   justify-content: center;
   align-items: center;
}

.expand-filters .form-group.active .input-acc {
   max-height: 200px;
   transition: max-height .2s ease-in-out;
}

html#lexmatch .expand-filters .input-group input,
html#lexmatch .expand-filters .input-group select,
html#lexmatch .expand-filters .input-group .dropdown-menu,
html#lexmatch .expand-filters .input-group .popover {
   font-size: 14px;
}

.expand-filters .selection-grade {
   display: flex;
   align-items: center;
   margin-bottom: 13px;
}

.expand-filters .selection-grade input {
   flex: 1 1 169px;
   max-width: 169px;
   margin-right: 20px;
}

.expand-filters .selection-grade span {
   font-size: 14px;
}

.expand-filters .selection-grade span:first-child {
   flex: 1 1 90px;
   max-width: 90px;
}

.expand-filters .form-check {
   margin-top: 9px;
   font-size: 12px;
   margin-right: 24px;
}

.expand-filters .form-check .form-check-input {
   margin-top: 0;
}

.expand-filters hr {
   margin-bottom: 30px;
   border-color: #B6B6B6;
}

.expand-filters .form-check-title {
   margin-top: 9px;
   font-size: 12px;
   margin-right: 12px;
}

.expand-filters .form-group.form-group-full input,
.expand-filters .form-group.form-group-full select,
.expand-filters .form-group.form-group-full .add-repeater-form {
   max-width: 420px;
}

.expand-filters .form-group .add-repeater-form {
   margin-top: 24px;
}

.match-bulk {
   padding-left: 20px;
   margin-bottom: 50px;
}

.match-bulk a+a {
   margin-left: 30px;
}

.table-form label.checkbox-tick span.checkmark {
   width: 12px;
   height: 12px;
   border-width: 1px;
   margin-right: 0;
}

.table-form label.checkbox-tick span.checkmark:after {
   width: 11px;
   height: 11px;
   top: 0;
   left: 0;
}

.cta-remove-candidate {
   margin-left: 12px;
}

.icon-awards,
.icon-debates,
.icon-leadership {
   font-size: 11px;
   line-height: 20px;
   color: #5790A9;
   vertical-align: middle;
   position: relative;
   display: inline-flex;
   align-items: center;
}

.icon-awards:before {
   content: "";
   position: relative;
   background: url(../image/icon-awards.svg) top left no-repeat;
   width: 14px;
   height: 13px;
   background-size: 100%;
   margin-right: 6px;
}

.icon-debates:before {
   content: "";
   position: relative;
   background: url(../image/icon-debate.svg) top left no-repeat;
   width: 13px;
   height: 11px;
   background-size: 100%;
   margin-right: 6px;
}

.icon-leadership:before {
   content: "";
   position: relative;
   background: url(../image/icon-leadership.svg) top left no-repeat;
   width: 13px;
   height: 12px;
   background-size: 100%;
   margin-right: 6px;
}

.cta-achievements+.cta-achievements {
   margin-left: 11px;
}

.cta-td {
   text-align: center;
   border-left: 1px solid #f0f0f0;
   border-right: 1px solid #f0f0f0;
}

.achv-tab-title {
   background: #EBF2F5;
   border-radius: 2px;
   padding: 12px 15px;
   margin-bottom: 14px;
}

.achv-tab-title span {
   font-weight: bold;
   font-size: 16px;
   color: #000;
}

.achv-tab-subtitle {
   display: flex;
   justify-content: space-between;
   font-weight: bold;
   font-size: 14px;
   line-height: 22px;
   color: #000;
   margin-bottom: 20px;
}

.achv-tab-content {
   font-size: 14px;
   color: #000;
   margin-bottom: 20px;
}

html#lexmatch #intro-step3.employer-dropdown {
   width: 250px;
}

html#lexmatch #header .nav-menu ul li#indashboard>a {
   position: relative;
   padding-right: 19px;
}

html#lexmatch #header .nav-menu ul li#indashboard>a:after {
   content: "";
   background: url(../image/icon-arrow-down.svg) top left no-repeat;
   background-size: 100%;
   width: 9px;
   height: 5px;
   display: block;
   position: absolute;
   right: 0;
   top: 50%;
   transform: translateY(-50%);
}

div.profileimage {
   display: inline-block;
   width: 25px;
   height: 25px;
   border-radius: 50%;
   overflow: hidden;
   margin-right: 10px;
   float: left;
}

div.profileimage img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.td-candidate-name {
   width: 120px;
   color: #000;
   font-size: 12px;
   line-height: 16px;
}

.td-candidate-school img {
   max-width: 19px;
   filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
   float: left;
   margin-right: 5px;
}

.text-declined {
   color: #B6B6B6;
}

table.ax-table-candidate tbody tr td {
   background-color: #EBF2F5;
}

table.ax-table-candidate tbody tr.main-tr td {
   background-color: #fff;
}

table.ax-table-candidate tbody tr.main-tr.shown td {
   /* background-color: #EBF2F5; */
   background-color: #FFFF;
}

table.ax-table-candidate tbody tr.main-tr.active td,
table.ax-table-candidate tbody tr.main-tr.shown.active td {
   background-color: #D8E1E6;
}

html#lexmatch body table.recruiter_table tr.shown td.ra_div .recruiter_arrow {
   transform: rotate(0deg);
   -webkit-transform: rotate(0deg);
}

html#lexmatch table.ax-table-candidate tfoot td,
html#lexmatch table.ax-table-candidate tfoot th {
   padding: 16px;
   border-top: none;
}

.ax-table-candidate+.dataTables_paginate {
   display: none;
}

html#lexmatch .ant-table-tbody>tr>td.td-candidate-name {
   padding: 0;
}

.div-candidate-name {
   position: relative;
   padding: 16px;
   width: 175px;
}

.div-candidate-name::after {
   content: "";
   display: table;
   clear: both;
}

.icon-good-match {
   position: absolute;
   top: 16px;
   right: 1px;
   display: block;
   width: 14px;
   height: 14px;
}

.icon-good-match::after {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   background: url(../image/icon-good-match-non.svg) top left no-repeat;
   background-size: 100%;
   width: 14px;
   height: 14px;
}

.icon-good-match.active::after {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   background: url(../image/icon-good-match.svg) top left no-repeat;
   background-size: 100%;
   width: 14px;
   height: 14px;
}

html#lexmatch .expandable-filter .expanded-content.scroll-content {
   max-height: 215px;
   overflow-y: auto;
}

.job-item-wrapper {
   max-height: 235px;
}

.notification-inner .notiview:nth-child(odd) {
   background-color: #EBF2F5;
}

.notification-inner .notiview:nth-child(even) {
   background-color: #fff;
}

.budget-td {
   border-left: 1px solid #f0f0f0;
}

.icon-flagged {
   z-index: 99;
   position: absolute;
   right: 0;
   top: 0;
   width: 0px;
   height: 0px;
   border-left: 10px solid transparent;
   border-right: 10px solid transparent;
   border-bottom: 10px solid #BACED7;
   transform: rotate(45deg);
   cursor: pointer;
   transition: all .2s ease-in;
}

.icon-flagged.active,
.icon-flagged:hover {
   border-bottom: 10px solid #1477F8;
}

html#lexmatch .ic-edit-email {
   position: absolute;
   right: 45px;
   top: 10px;
   padding: 3px 7px;
   font-size: 12px;
   border-radius: 3px;
   border: 1px solid #000;
   z-index: 999;
   background-color: transparent;
}

html#lexmatch .ic-edit-email.resend-email {
   border-color: green;
   color: green;
}

html#lexmatch .ic-edit-email.resend-email:hover {
   background-color: green;
   color: #fff;
}

html#lexmatch .ic-edit-email.cancel-edit {
   border-color: red;
   color: red;
   right: 120px;
}

html#lexmatch .ic-edit-email.cancel-edit:hover {
   background-color: red;
   color: #fff;
}

.fw-500 {
   font-weight: 500;
}

html#lexmatch #adv-filter-pop .checkbox-filter .label-container.font-weight-500 {
   color: #18214D;
   font-weight: 500;
}

/* html#lexmatch #header+*{
   margin-top: 89px;
   min-height: calc(100vh - 141px);
} */
table.ax-table-candidate tbody tr.sub-tr {
   display: none;
}

table.ax-table-candidate tbody tr.shown+tr.sub-tr {
   display: table-row;
}

table.ax-table-candidate tr.student-child-tb strong {
   color: #304F5D;
   font-weight: 500;
   margin-bottom: 8px;
}

table.ax-table-candidate tr.student-child-tb div+div {
   margin-top: 22px;
}

table.ax-table-candidate tr.student-child-tb td {
   width: 33.33%;
   vertical-align: top;
   padding-left: 28px;
   border-left: 1px solid #C8D6DC;
   text-align: left;
}

table.ax-table-candidate tr.student-child-tb td:first-child {
   padding-left: 10px;
   border-left: 0;
}

table.ax-table-candidate .action-td {
   cursor: default;
}

.lexmatch-table-job-simple table.ax-table-candidate .action-td div.more-action {
   pointer-events: auto;
   padding-top: 7px;
   padding-bottom: 7px;
   cursor: pointer;
}

.lexmatch-table-job-simple table.ax-table-candidate .more-action .dot {
   background: #304F5D;
}

.lexmatch-table-job-simple table.ax-table-candidate .more-action:hover .dot {
   background-color: #ccc !important;
}

.lexmatch-table-job-simple table.ax-table-candidate .action-td a.t-row-details {
   display: inline-block;
   width: 16px;
   height: 16px;
}

.lexmatch-table-job-simple table.ax-table-candidate .action-td div.more-action+a.t-row-details {
   margin-top: 6px;
}

html#lexmatch .mypopover ul li ul {
   opacity: 0;
   visibility: visible;
   max-height: 0;
   transition: maxheight .2s ease-in-out;
   position: absolute;
   pointer-events: none;
}

html#lexmatch .mypopover ul li ul a {
   font-size: 13px;
   margin-left: 10px;
   background-color: #fff !important;
   color: #000 !important;
}

html#lexmatch .mypopover ul li ul a:hover {
   background-color: #fff !important;
   color: #00C48C !important;
}

html#lexmatch .mypopover ul li.has-child:hover a {
   background-color: #fff !important;
}

html#lexmatch .mypopover ul li.has-child>a {
   position: relative;
}

html#lexmatch .mypopover ul li.has-child:hover>a {
   background-color: #fff !important;
   color: #000 !important;
}

html#lexmatch .mypopover ul li.has-child>a::after {
   content: "";
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   right: 15px;
   background: url(../image/has-child-arrow-down.svg) top left no-repeat;
   width: 10px;
   height: 5px;
   background-size: 100%;
}

html#lexmatch .mypopover ul li.has-child:hover ul {
   opacity: 1;
   max-height: 500px;
   visibility: visible;
   position: relative;
   top: unset;
   pointer-events: auto;
}

#view_edit button[type="submit"][disabled],
#view_edit button[type="submit"]:disabled {
   background-color: #BDBDBD;
   border-color: #BDBDBD;
   color: #4F4F4F;
}

html#lexmatch .ant-table-tbody>tr>td.no-border-left {
   border-left: 0;
}

.dots-td {
   border-right: 1px solid #f0f0f0;
}

#add-candidate-popup .row {
   margin-left: -5px;
   margin-right: -5px;
}

#add-candidate-popup .col-6,
#add-candidate-popup .col-12 {
   padding-left: 5px;
   padding-right: 5px;
}

#add-candidate-popup .form-group {
   margin-bottom: 12px;
}

#add-candidate-popup .react-lexmatch-component,
#add-candidate-popup .ant-select {
   width: 100%;
}

html#lexmatch #add-candidate-popup .form-group select {
   padding-left: 11px;
}

#add-candidate-popup hr {
   border-color: #B6B6B6;
   margin: 22px 0;
}

#add-candidate-popup .ant-upload.ant-upload-drag .ant-upload {
   padding: 0;
}

#add-candidate-popup .color-true-black {
   color: #000;
   margin-bottom: 12px;
}

#add-candidate-popup .apply-wrap2 .form-group {
   padding: 12px 0;
}

html#lexmatch #add-candidate-popup .react-upload .ant-upload.ant-upload-drag,
#add-candidate-popup .ant-upload-list-text-container {
   max-width: 340px;
}

html#lexmatch #add-candidate-popup .react-upload .ant-upload-text {
   font-size: 14px;
}

#add-candidate-popup .apply-wrap2 .row:last-child .form-group {
   padding: 0;
   margin-bottom: 0;
}

#add-candidate-popup .budget-wrap h5 {
   font-weight: 700;
   font-size: 16px;
   color: #000;
   margin: 8px 0;
}

#add-candidate-popup .budget-wrap .radio input {
   margin-right: 10px;
}

#degree_projected_slider .ant-slider-mark .ant-slider-mark-text:last-child {
   min-width: 88px;
   max-width: 88px;
}

#account-recruiter-professional-matched .match-tabs .match-tabs-tab {
   flex: 1 1 auto;
}

.all-any-selection {
   margin-top: -20px;
}

.recruiter_pass_application_table {
   width: 100%;
}

html#lexmatch section.my-jobs-for-you {
   padding-top: 0;
}

html#lexmatch section.my-jobs-for-you h3 {
   color: #5790A9;
}

span.blurred {
   position: relative;
   display: inline-block;
   text-shadow: 0 0 5px black;
   color: transparent;
}

html#lexmatch select.form-control:-webkit-autofill+.control-label.float-label,
html#lexmatch textarea.form-control:-webkit-autofill+.control-label.float-label,
html#lexmatch input[type="text"].form-control:-webkit-autofill+.control-label.float-label,
html#lexmatch input[type="password"].form-control:-webkit-autofill+.control-label.float-label,
html#lexmatch input[type="datetime"].form-control:-webkit-autofill+.control-label.float-label,
html#lexmatch input[type="datetime-local"].form-control:-webkit-autofill+.control-label.float-label,
html#lexmatch input[type="date"].form-control:-webkit-autofill+.control-label.float-label,
html#lexmatch input[type="month"].form-control:-webkit-autofill+.control-label.float-label,
html#lexmatch input[type="time"].form-control:-webkit-autofill+.control-label.float-label,
html#lexmatch input[type="week"].form-control:-webkit-autofill+.control-label.float-label,
html#lexmatch input[type="number"].form-control:-webkit-autofill+.control-label.float-label,
html#lexmatch input[type="email"].form-control:-webkit-autofill+.control-label.float-label,
html#lexmatch input[type="url"].form-control:-webkit-autofill+.control-label.float-label,
html#lexmatch input[type="search"].form-control:-webkit-autofill+.control-label.float-label,
html#lexmatch input[type="tel"].form-control:-webkit-autofill+.control-label.float-label,
html#lexmatch input[type="color"].form-control:-webkit-autofill+.control-label.float-label {
   top: -6px;
   left: 8px;
   font-size: 12px;
   opacity: 1;
   padding: 0px 8px;
   bottom: auto;
   width: auto;
   background: #fff;
   line-height: 1;
}

.candidate_active_label.e2 {
   margin-left: 31px;
}

.candidate_active_label.e3 {
   margin-left: 41px;
}

.candidate_active_label.e4 {
   margin-left: 57px;
}

#menulastupdate {
   font-size: 14px;
   color: #B6B6B6;
   font-weight: 400;
}

html#lexmatch .account-preferences .container .row form .react-lexmatch-component .ant-select.ant-select-disabled {
   opacity: 0.4;
}

.croppie-container .cr-viewport,
.croppie-container .cr-resizer {
   position: relative;
}

html#lexmatch #cropPimg .modal-dialog {
   max-width: 542px;
}

html#lexmatch #cropPimg .modal-content {
   padding: 20px;
}

html#lexmatch #cropPimg .modal-header {
   margin-bottom: 20px;
}

html#lexmatch img.img-responsive {
   /* width: 70%; */
}

body.account-recruiter_search_candidates .ant-tooltip,
body.account-employer_professional_matched .ant-tooltip {
   z-index: 1070 !important;
}

.showerror .ant-upload.ant-upload-drag {
   border: 2px dashed #FF3C45 !important;
}

html#lexmatch .apply-wrap .showerror .react-upload .color-black {
   color: red !important;
}

html#lexmatch #header .nav-menu .drop-down ul {
   pointer-events: none;
}

html#lexmatch #header .nav-menu .drop-down:hover>ul {
   pointer-events: auto;
}

html#lexmatch .notification-inner {
   right: -20px !important;
}

/* .dz-clickable{
   width: 100%;
   height: 500px;
}  */
.dz-preview {
   width: calc(33.33% - 12px);
   margin: 0 6px 15px;
   position: relative;
}

.dz-details,
.dz-success-mark,
.dz-error-mark {
   display: none !important;
   visibility: hidden !important;
   opacity: 0 !important;
}

.dz-remove {
   background-color: #0000004d;
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   transition: all .3s ease-in-out;
   opacity: 0;
   cursor: pointer;
   text-indent: -9999px;
}

.dz-preview:before {
   content: "\2715";
   top: 50%;
   left: 50%;
   transform: translateX(-50%) translateY(-50%);
   font-size: 24px;
   font-weight: 700;
   color: white;
   position: absolute;
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   cursor: pointer;
   pointer-events: none;
}

.dz-preview:hover .dz-remove,
.dz-preview:hover:before {
   opacity: 1;
}