@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --blue: #223565;
  --blueLight: #0c4694;
  --white: #ffffff;
  --black: #000000;
  --boxShadow: 0 4px 4px rgb(0 0 0 / 25%);
  --gray: #969696;
}

/* General */
body {
  font-family: "Poppins", sans-serif;
}
p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}
/* Login screen start */
.login-screen {
  background: url("../images/screen-background.jpg") no-repeat center
    center;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0px;
  position: relative;
}
.login-screen:before {
  content: "";
  background: url("../images/left-images.png") no-repeat left center;
  position: absolute;
  width: 20%;
  height: 90%;
  left: 12%;
  background-size: contain;
}
.login-screen:after {
  content: "";
  background: url("../images/right-images.png") no-repeat bottom
    center;
  position: absolute;
  width: 15%;
  height: 90%;
  right: 14%;
  background-size: contain;
}
.login-screen-details {
  width: 34%;
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  margin: 0px auto;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.login-screen-details img {
  width: 270px;
  margin: 0px auto;
  display: table;
}
.login-text h1 {
  font-size: 26px;
  text-align: center;
  color: var(--blue);
  font-weight: bold;
  padding: 25px 0 12px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.login-text .intro-para {
  font-size: 18px;
  text-align: center;
  color: var(--blue);
  font-weight: 500;
  width: 85%;
  margin: 0px auto;
  padding-bottom: 20px;
}

.input-icon {
  position: relative;
}
.input-icon i {
  position: absolute;
  top: 18px;
  left: 18px;
  color: #223565;
  cursor: pointer;
}
.input-icon input {
  padding: 12px 10px 10px 45px;
  color: #223565;
  border-radius: 18px;
  box-shadow: 0 4px 4px rgb(34 53 101 / 25%);
  height: 52px;
  font-size: 15px;
  line-height: 25px;
}
.eye-icon {
  right: 18px;
  left: unset !important;
}
.forgot-psw a {
  font-size: 14px;
  line-height: 26px;
  color: var(--blue);
  text-align: right;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  font-weight: 500;
}
.forgot-psw a:hover {
  color: var(--black);
}

.submitBtn {
  background: var(--blue) !important;
  width: 100%;
  color: var(--white) !important;
  border-radius: 18px !important;
  padding: 12px 20px !important;
  box-shadow: var(--boxShadow) !important;
  border: none !important;
  font-size: 18px !important;
  text-transform: uppercase;
}
.submitBtn:hover {
  background: var(--black) !important;
}
.create-account-link {
  padding-top: 18px;
}
.create-account-link p {
  text-align: center;
  color: var(--blue);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}
.create-account-link a {
  color: var(--blue);
  text-decoration: none;
}
.create-account-link a:hover p {
  color: var(--black);
}

.form-space {
  padding: 15px 0;
}

.form-otp input {
  box-shadow: var(--boxShadow) !important;
  height: 52px;
  width: 52px;
  border-radius: 12px;
  margin: 0px auto;
}
/* Login screen end */

/* dashboard */
.header-part {
  padding: 20px 40px;
  border-bottom: 1px solid var(--blueLight);
}
.dahboard-screen {
  background: url("../images/screen-background.jpg") no-repeat center
    center;
  background-size: cover;
  min-height: 100vh;
  padding: 35px;
  display: flex;
  align-items: center;
}
.dahboard-screen-details {
  background: var(--white);
  border-radius: 20px;
  min-height: 88vh;
}
.history-complaint-lists {
  padding: 20px 40px;
}
.add-comlaint-btn {
  background: var(--blue);
  width: auto;
  color: var(--white);
  border-radius: 18px;
  padding: 10px 40px;
  box-shadow: var(--boxShadow);
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  display: table;
  cursor: pointer;
}
.add-comlaint-btn:hover {
  background: var(--black);
  color: var(--white);
}
.history-complaint h3 {
  font-size: 18px;
  line-height: 28px;
  color: var(--blue);
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.complaint-list {
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.complaint-list li {
  margin: 1em;
  list-style: none;
  box-shadow: var(--boxShadow);
  border: 1px solid var(--blue);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
  width: 20em;
}
.complaint-list li p {
  color: var(--gray);
  font-size: 16px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.complaint-status {
  display: flex;
  width: 100%;
  justify-content: space-between;
  text-transform: uppercase;
}
.complaint-status p {
  margin-bottom: 0;
  font-size: 12px !important;
  line-height: 24px !important;
  color: var(--blue) !important;
  font-weight: 700;
  align-items: center;
}
.status-dropdown {
  flex: 0 0 50%;
  align-items: center;
}
.status-dropdown select {
  padding: 4px 21px 4px 12px;
  font-size: 14px;
}
.status-dropdown p {
  flex: 0 0 60px;
  margin-bottom: 0;
}
.statusList select {
  padding: 12px 10px 10px 20px;
  color: #223565;
  border-radius: 18px;
  box-shadow: 0 4px 4px rgb(34 53 101 / 25%);
  height: 52px;
  font-size: 15px;
  line-height: 25px;
}
.date-range {
  padding: 12px 10px 10px 12px;
  color: #223565;
  border-radius: 18px !important;
  box-shadow: 0 4px 4px rgb(34 53 101 / 25%);
  height: 52px;
  font-size: 15px;
  line-height: 25px;
  width: 100%;
  text-align: center;
  background: transparent;
  border: 1px solid #ddd;
  cursor: pointer;
}
.add-user-popup .modal-content {
  margin: 0px auto;
  width: 48%;
}
.add-user-popup .modal-header {
  border-bottom: 0;
}

.add-user-popup .modal-body {
  padding: 35px;
}
.add-user-popup .form-control {
  border-radius: 10px;
}
.add-user-popup input {
  height: 41px;
}
.add-user-popup .submitBtn {
  margin-top: 18px;
  font-size: 16px !important;
}
.add-user-popup .btn-close {
  font-size: 15px;
}
.modal-backdrop {
  --bs-backdrop-bg: #223565;
}
.logo-width {
  width: 285px;
}
.user-width {
  width: 40px;
  margin-right: 12px;
}
.logout a {
  background: var(--blue);
  color: var(--white);
  border-radius: 14px;
  padding: 10px 40px;
  box-shadow: var(--boxShadow);
  border: none;
  font-size: 12px;
  text-transform: uppercase;
  display: table;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: bold;
}
.logout a:hover {
  background: var(--black);
  color: var(--white);
}
.all-list ul li {
  cursor: pointer;
}

.complaint-popup-info .modal-body {
  border: 1px solid var(--blue);
  margin: 0 20px 30px;
  padding: 20px !important;
  border-radius: 10px;
  box-shadow: var(--boxShadow);
}
.complaint-desc {
  color: var(--gray);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 0px;
}
.complaint-desc span {
  color: var(--blue);
}
.complaint-popup-info .modal-title {
  color: var(--blue);
  text-transform: uppercase;
  font-size: 18px;
  line-height: 28px;
  font-weight: bold;
}
.form-label {
  color: var(--blue);
  font-size: 16px;
  line-height: 26px;
  font-weight: bold;
}
.status-dropdown {
  display: flex;
}
.status-dropdown p {
  flex: 0 0 70px;
}

.error-screen {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-info h1 {
  font-size: 40px;
  text-align: center;
  color: var(--blue);
  font-weight: bold;
  padding: 25px 0 40px;
  margin-bottom: 0;
  text-transform: uppercase;
}
.error-info a {
  background: var(--blue);
  width: 100%;
  color: var(--white);
  border-radius: 18px;
  padding: 12px 45px;
  box-shadow: var(--boxShadow);
  border: none;
  font-size: 16px;
  text-transform: uppercase;
  display: table;
  text-decoration: none;
  width: auto;
  margin: 0px auto;
}
.error-info a:hover {
  background: var(--black);
  color: var(--white);
}

.swal2-styled.swal2-confirm {
  background: var(--blue) !important;
  color: var(--white) !important;
  border-radius: 14px !important;
  padding: 10px 50px !important;
  box-shadow: var(--boxShadow) !important;
}

.search-table thead {
  background: var(--blue);
  color: var(--white);
}
.search-table tr td:first-child,
.search-table th:first-child,
.search-table tr td:last-child,
.search-table th:last-child {
  text-align: center;
}
.fileInput input {
  height: auto;
}
.search-table th,
.search-table td {
  vertical-align: middle;
}

.complaint-img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  object-fit: cover;
  /* margin: 0px auto;
  display: table; */
}
.popupImg {
  width: 100%;
  height: 170px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 10px;
}
.userCompaint-title {
  color: var(--blue);
  text-transform: uppercase;
  font-size: 18px !important;
  line-height: 28px !important;
  font-weight: bold !important;
  margin-bottom: 20px;
}

.complaint-text {
  display: inline-block;
  max-width: 142px;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}
.allCompaint .modal-content {
  width: 70% !important;
}
.detailsEmp h3 {
  color: var(--blue);
  font-size: 16px;
  line-height: 26px;
  font-weight: bold;
}
.w-30 {
  width: 30%;
}
.w-10 {
  width: 10%;
}

.textSmall {
  max-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.blueBtn a {
  background: var(--blue);
  color: var(--white);
  border-radius: 14px;
  padding: 10px 40px;
  box-shadow: var(--boxShadow);
  border: none;
  font-size: 12px;
  text-transform: uppercase;
  display: table;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: bold;
}
.blueBtn a:hover {
  background: var(--black);
  color: var(--white);
}
.all-user {
  margin-right: 10px;
}

.dropDownStyle {
  padding: 8px 10px 8px 12px !important;
  color: var(--blue) !important;
  border-radius: 18px !important;
  box-shadow: 0 4px 4px rgb(34 53 101 / 25%);
  height: 41px;
  font-size: 15px !important;
  line-height: 25px !important;
}
.acceptreject-btn {
  width: 100%;
  border-radius: 14px !important;
}
.dashboardpopupwidth .modal-content {
  width: 100% !important;
}

.box-style {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 8px 12px;
}
.com-history .modal-content {
  width: 100%;
}
.created-date {
  position: absolute;
  right: 10px;
  font-size: 12px;
}
.userProfile {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 100%;
}
#jc {
  align-items: center;
}
.userName {
  color: var(--blue);
  text-transform: uppercase;
  font-size: 18px !important;
  line-height: 28px !important;
  font-weight: bold !important;
  margin-left: 15px;
}
a {
  text-decoration: none !important;
  color: #000000 !important;
  font-size: 16px;
}
.dropdown-item:active {
  background-color: transparent !important;
}
.search-table i {
  cursor: pointer;
}

/* images multiple */
.form-submit {
  padding: 13px 30px;
  font-size: 15px;
  letter-spacing: 0.3px;
  font-weight: 400;
}
.kb-data-box {
  width: 100%;
  flex: 1;
}

.kb-modal-data-title {
  margin-bottom: 10px;
}
.kb-data-title h6 {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 600;
}
.kb-file-upload {
  margin-bottom: 20px;
}
.file-upload-box {
  border: 1px dashed #b6bed1;
  background-color: #f0f2f7;
  border-radius: 4px;
  min-height: 150px;
  position: relative;
  overflow: hidden;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8194aa;
  font-weight: 400;
  font-size: 15px;
}
.file-upload-box .file-upload-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
.file-link {
  color: #475f7b;
  text-decoration: underline;
  margin-left: 3px;
}
.file-upload-box .file-link:hover {
  text-decoration: none;
}
.file-atc-box {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.file-image {
  /* width: 130px;
    min-width: 130px;
    height: 85px;
    min-height: 85px; */
  width: 130px;
  height: 85px;
  background-size: cover;
  border-radius: 5px;
  margin-right: 15px;
  background-color: #eaecf1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #475f7b;
  padding: 3px;
}
.file-image img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
}
.file-detail {
  flex: 1;
  width: calc(100% - 210px);
}
.file-detail h6 {
  word-break: break-all;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 8px;
}
.file-detail p {
  font-size: 12px;
  color: #8194aa;
  line-height: initial;
  font-weight: 400;
  margin-bottom: 8px;
}
.file-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}
.file-action-btn {
  font-size: 12px;
  color: #8194aa;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  text-decoration: underline;
  margin-right: 15px;
  cursor: pointer;
}
.file-action-btn:hover {
  color: #3d546f;
  text-decoration: underline;
}
.file-atc-box:last-child {
  margin-bottom: 0;
}

.image-stack {
  display: flex;
  flex-flow: wrap;
  position: relative;
}

.image-stack img:not(:first-child) {
  position: absolute;
}
.image-stack img:nth-child(2) {
  left: 25px;
}
.image-stack img:nth-child(3) {
  left: 55px;
}
.image-stack img:nth-child(4) {
  left: 85px;
}
.complaint-img-popup {
  width: 95px;
  height: 95px;
  object-fit: cover;
  margin-right: 10px;
  margin-bottom: 10px;
}


.profile .dropdown{
  display: flex;
  align-items: center;
}

.profile .form-select{
border: 0;
position: relative;
}
.profile .form-select::before{
  content: '';
  background: url(../images/user.svg)  no-repeat;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
}
.profile ul.dropdown-menu.show{
  width: 100%;
}

.modal-header {
  border-bottom: 0px solid #dee2e6;
}
.popup-view .modal-body {
  border: 1px solid var(--blue);
  margin: 0 20px 30px;
  padding: 20px !important;
  border-radius: 10px;
  box-shadow: var(--boxShadow);
}
.popup-view h5 {
  color: var(--blue);
  text-transform: uppercase;
  font-size: 18px;
  line-height: 28px;
  font-weight: bold;
}
.form-label {
  color: var(--blue);
  font-size: 16px;
  line-height: 26px;
  font-weight: bold;
}
.dropDownStyle {
  padding: 8px 10px 8px 12px !important;
  color: var(--blue) !important;
  border-radius: 18px !important;
  box-shadow: var(--boxShadow);
  height: 41px;
  font-size: 15px !important;
  line-height: 25px !important;
}
.submitBtn {
  background: var(--blue) !important;
  width: 100%;
  color: var(--white) !important;
  border-radius: 18px !important;
  padding: 12px 20px !important;
  box-shadow: var(--boxShadow) !important;
  border: none !important;
  font-size: 18px !important;
  text-transform: uppercase;
}



/* -------------------- */
.userCompaint-title {
  color: var(--blue);
  text-transform: uppercase;
  font-size: 18px !important;
  line-height: 28px !important;
  font-weight: bold !important;
  margin-bottom: 20px;
}

.com-history .modal-dialog {
  max-width: 60%;
}
.com-history .form-control {
  border-radius: 10px;
}
.com-history input {
  height: 41px;
}

.com-history .modal-body {
  padding: 0 32px 40px;
}
.borderLine .modal-dialog {
  max-width: 60%;
}

.file-upload-box {
  border: 1px dashed #b6bed1;
  background-color: #f0f2f7;
  border-radius: 4px;
  min-height: 150px;
  position: relative;
  overflow: hidden;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8194aa;
  font-weight: 400;
  font-size: 15px;
}
.file-upload-box .file-upload-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

.detailsEmp h3 {
  color: var(--blue);
  font-size: 16px;
  line-height: 26px;
  font-weight: bold;
}
.acceptreject-btn {
  width: 100%;
  border-radius: 14px !important;
}
.borderLine .modal-body {
  border: 1px solid var(--blue);
  margin: 0 20px 30px;
  padding: 20px !important;
  border-radius: 10px;
  box-shadow: var(--boxShadow);
}
.complaint-status {
  display: flex;
  width: 100%;
  justify-content: space-between;
  text-transform: uppercase;
}
.complaint-status p {
  margin-bottom: 0;
  font-size: 12px !important;
  line-height: 24px !important;
  color: var(--blue) !important;
  font-weight: 700;
  align-items: center;
}
.status-dropdown p {
  flex: 0 0 70px;
}
.status-dropdown {
  display: flex;
  align-items: center;
}
.status-dropdown select {
  padding: 4px 21px 4px 12px;
  font-size: 14px;
}
.status-dropdown {
  flex: 0 0 50%;
}
.w-20 {
  width: 20%;
}
.btnColse{
  background: #ff00009e;
text-align: center;
margin-bottom: 0;
padding: 7px;
border-radius: 10px;
color: #fff;
}

.GetUserWiseData
{
  background: var(--white);
  border: 1px solid var(--blue);
}
.GetUserWiseData:hover{
  background: var(--blue);
}
.GetUserWiseData:hover i{
  color: var(--white);
}
.Breakwork{
  word-break: break-word;
}