:root {
  --menu-background: #fff;
  --content-background: #f7f7f9;
  --logoFont: "Leckerli One", cursive;
  --menuFont: "Baumans", cursive;
  --monFont: "Montserrat", sans-serif;
  --darkBlue: #1a374d;
  --blue: #406882;
  --lightBlue: #f7fbfc;
}
.lightblue-bg {
  background-color: var(--lightBlue);
}
.blue-bg {
  background-color: var(--blue);
}
body {
  overflow-x: hidden;
  background-color: #f7f7f9;
  font-family: var(--monFont);
}
.rating_star {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-right: 5px;
}
#changeView {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#changeView img {
  width: 40px;
  height: auto;
}
.editIcon,
.closeIcon,
.checkIcon,
.plusIcon {
  width: 20px;
  height: auto;
}

.deleteIcon {
  width: 15px;
  height: auto;
}
.lds-ring {
  display: inline-block;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.35);
  width: 100vw;
  height: 100vh;
  z-index: 111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 74px;
  height: 74px;
  margin: 8px;
  border: 5px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--content-background) transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#alert {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 111;
  background-color: rgba(0, 0, 0, 0.4);
}
#alert #popUp {
  width: 400px;
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#alert #popUp i {
  font-size: 75px;
  color: #dbb43d;
}
#alert #popUp .alertIcon {
  position: relative;
  left: 50%;
  width: fit-content;
  transform: translateX(-50%);
}
#alert #popUp .alertAction {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-between;
}
#alert #popUp .alertAction button {
  border: none;
  width: 49%;
  padding: 6px 10px;
  border-radius: 4px;
  color: #ffffff;
  text-transform: capitalize;
  letter-spacing: 0.2px;
}
#alert #popUp .alertAction #yes {
  background-color: #59ce8f;
}
#alert #popUp .alertAction #no {
  background-color: #eb5353;
}
#alert #popUp .alertMessage {
  padding: 15px 0px;
}
#navbar {
  background-color: var(--menu-background);
  width: 100%;
  height: 100vh;
  padding: 15px 20px;
}
.logo {
  font-family: var(--logoFont);
  text-align: center;
  font-size: 45px;
  color: var(--darkBlue);
  text-shadow: 1px 1px 2px var(--darkBlue);
}
.menu {
  position: relative;
  top: 50px;
}
.menu ul li {
  list-style-type: none;
  border-radius: 10px;
  position: relative;
}
#leavesBtn #pendingLeaves {
  color: var(--lightBlue);
  border-radius: 50%;
  height: 25px;
  width: 25px;
  font-size: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 12px;
  margin-right: 10px;
}
.menu ul li a {
  font-family: var(--menuFont);
  color: #6998ab;
  display: block;
  padding: 10px 14px;
  margin-bottom: 3px;
  text-transform: capitalize;
  font-size: 17px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.4s;
  letter-spacing: 0.3px;
}
.menu ul li:hover {
  background-color: #f0f4f6;
}
.menu ul li:hover a {
  color: var(--blue);
}

.menu ul li i {
  margin-right: 10px;
  transition: 0.4s;
}
.menu ul li:hover i {
  color: var(--darkBlue);
  transform: scale(1.3, 1.3);
}
.menu ul .active {
  background-color: #f0f4f6;
}
.menu ul .active a {
  color: var(--blue);
}
.menu ul .active i {
  color: var(--darkBlue);
  transform: scale(1.3, 1.3);
}
.welcomeAdmin {
  padding: 12px 0px;
  border-bottom: 1px solid #e0e7e9;
  box-shadow: 5px 2px 10px #e0e7e9;
}
.welcomeAdmin .mainHeading {
  color: var(--darkBlue);
  font-family: "Raleway", sans-serif;
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: capitalize;
}

/*============================================================ events css style started for here ============================================ */
.containerCustom {
  padding: 10px 30px;
}
/* width */
::-webkit-scrollbar {
  width: 8px !important;
  height: 8px !important;
}

/* Track */
::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 0px 6px 6px 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--darkBlue);
  border-radius: 0px 6px 6px 0px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}
.events .eventsList,
.events .addEvents,
.employees .employeesSection,
.addEmployeeBox,
.shifts .shiftsList,
.leaves .leavesList,
.leaves .leaveDetailsArea,
.bestPrizeImageSection .addImageSection,
.bestPrizeImageSection .imagesList,
.dashboard .upcomingEventsList,
.dashboard .todayEventsList,
.dashboard .workingEmployeesList,
.dashboard .topPerformersBox,
.manageUsers .usersList,
.manageUsers .addUserArea {
  position: relative;
  box-shadow: rgb(76 78 100 / 22%) 0px 2px 10px 0px;
  background-color: #ffffff;
  border-radius: 6px;
  height: 84vh;
  width: 100%;
  overflow: auto;
}

.green-acent-color {
  accent-color: #59ce8f;
}
.red-acent-color {
  accent-color: #eb5353;
}

.upcomingEventsList,
.topPerformersBox {
  height: 41.5vh !important;
}
.todayEventsList,
.workingEmployeesList {
  margin-bottom: 1vh;
  height: 41.5vh !important;
}
.addEmployeeBox {
  display: block;
}

.headings {
  font-family: "Poppins", sans-serif;
  position: relative;
  font-size: 17px;
  text-transform: capitalize;
  padding: 10px 15px;
  margin: 0;
  background-color: var(--darkBlue);
  color: #d6e6f2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.headings p {
  margin: 0;
  padding: 0;
}
.headingWithFilters {
  padding: 5px 15px !important;
}
.stickyHeading {
  position: sticky !important;
  top: 0;
  right: 0;
  width: 100%;
  border-radius: 6px 0px 0px 0px;
  z-index: 5;
}
.eventInfo,
.leaveInfo,
.dutyInfo,
.performerInfo {
  padding: 10px;
  background-color: var(--lightBlue);
  position: relative;
  width: 98%;
  margin: 15px auto;
  font-family: var(--monFont);
  color: var(--blue);
  cursor: pointer;
}
.eventDay,
.leaveRequestDay {
  text-align: center;
  border: 1px solid var(--blue);
  width: 80px;
  border-radius: 4px;
}
.month {
  /* border-radius: 4px 4px 0px 0px; */
  background-color: var(--blue);
  color: #f7fbfc;
  font-size: 12.2px;
  text-transform: capitalize;
}
.date {
  font-family: var(--logoFont);
  font-size: 22px;
  font-weight: 600;
}
.year {
  font-size: 12.2px;
}
.leaveSeeker p {
  margin: 0px;
  padding: 0px;
  /* line-height: normal; */
}
.eventVenu,
.leaveSeeker {
  font-size: 19px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.leaveSeeker {
  align-items: flex-start;
}
.leaveSeeker .leaveSeekerName {
  font-size: 20px;
}
.leaveSeeker .leaveReason {
  font-size: 15px;
}
.leaveSeeker .leaveSeekerRole {
  font-size: 12px;
  color: #464a4e;
  font-style: italic;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.eventStartTime,
.leaveRequestStatus {
  text-align: right;
  position: relative;
  height: 100%;
}
.eventStartTime .time {
  background-color: #8ba6c32e;
  padding: 3px;
  color: #083044bf;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  display: block;
  min-width: 50%;
  position: absolute;
  right: 0px;
  text-align: center;
}
.eventStartTime .eventStatus,
.leaveRequestStatus .status {
  display: block;
  min-width: 50%;
  position: absolute;
  bottom: 0px;
  right: 0px;
  background-color: var(--blue);
  color: var(--lightBlue);
  font-weight: 500;
  padding: 2px 4px;
  font-size: 12px;
  border-radius: 3px;
  text-transform: capitalize;
  text-align: center;
}
.addNewEventBox {
  overflow: hidden;
  width: 100%;
  padding: 10px;
  position: relative;
}
/* form settings  */
.form-label {
  margin: 0px;
  margin-bottom: 2px;
  text-transform: capitalize;
  font-size: 14px;
}
.eventDetails,
.eventTeam,
#leaveDetailsBox,
#eventsOnLeaveDate {
  background-color: #fff;
  border-radius: 0px 0px 4px 4px;
  border: 0.6px solid #e0e7e9;
  border-top: none;
  box-shadow: rgb(76 78 100 / 22%) 0px 2px 10px 0px;
}
.eventTeam {
  position: relative;
}

.smallHeading {
  position: relative;
  background-color: var(--blue);
  border-radius: 4px 4px 0px 0px;
  padding: 6px 12px;
  color: #f7fbfc;
  text-transform: capitalize;
}
.smallHeading p {
  margin: 0px;
  padding: 0px;
}
.smallHeading i {
  float: right;
  padding: 3px;
  transform: scale(1.4);
  margin-top: 2px;
}

.form-control,
.form-select {
  /* background-color: var(--lightBlue); */
  background-color: #f7fbfc;
  border: 1px solid #e0e7e9;
}
.form-control:focus,
.form-select:focus {
  background-color: var(--lightBlue);
  outline: none;
  border: 1px solid #d6e6f2;
  box-shadow: none;
}
.eventTeam .role {
  border: 1px solid #d6e6f2;
  border-radius: 5px;
  margin-bottom: 25.4px;
}
.eventTeam .role .role-heading {
  position: relative;
  background: #f7fbfc;
  border-radius: 5px 5px 0px 0px;
  border: none;
  border-bottom: 1px solid #d6e6f2;
  text-transform: capitalize;
  color: #6c7a89;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  width: 100%;
  padding: 0.1rem 0.75rem;
  cursor: pointer;
}
.eventTeam .role .role-heading i {
  color: var(--blue);
  font-size: 20px;
  margin-top: 3px;
  padding: 5px;
}
.eventTeam .role .role-heading .role-icon {
  color: #6c7a89;
  font-size: 16px;
}
.eventTeam .member P {
  text-align: center;
  margin: 0px;
  color: #6c7a89;
}
#addEventButton,
.submitBtn,
.submitBtn:focus,
.show-detailed-events-shift-btn {
  background-color: var(--blue);
  color: var(--lightBlue);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.show-detailed-events-shift-btn {
  font-size: 14px;
  font-weight: 500 !important;
}

.allMembers {
  top: 5%;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  height: 445px;
  overflow-y: auto;
  background-color: #ffffff;
  box-shadow: rgb(76 78 100 / 70%) 0px 2px 10px 4px;
  position: absolute;
  z-index: 1;
  margin: 0px auto;
  border-radius: 6px;
}
.allMembers .smallHeading {
  background-color: #6c7a89;
  border-top-right-radius: 0px;
}
#closeTeamList {
  position: absolute;
  right: 5px;
  top: 0px;
  cursor: pointer;
  padding: 5px;
}
.mem {
  padding: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #e0eaf0;
  width: 95%;
  margin: 12px auto;
  box-shadow: 0px 0px 8px rgb(76 78 100 / 34%);
  position: relative;
  z-index: 1;
  cursor: crosshair;
}
.mem .memberName {
  font-size: 16px;
  color: #406882;
  display: block;
  font-weight: 500;
}
.mem .memberRole {
  font-size: 13px;
  color: #6c7a89;
  font-weight: 500;
  font-style: italic;
  display: block;
  padding: 0px;
  margin-top: -5px;
}
.mem i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  padding: 12px;
  cursor: pointer;
  z-index: 2;
}
.showAllTeamBox,
.show {
  display: block !important;
}
.hide {
  display: none !important;
}
.displayNone {
  display: none;
}
.alert {
  position: relative;
  padding: 0;
  border: none;
  border-radius: 0.25rem;
  width: 95%;
  margin: 0px auto 0px auto;
  font-size: 13.5px !important;
}
.mb-10 {
  margin-bottom: 10px;
}
.mt-10 {
  margin-top: 10px;
}
.p-10 {
  padding: 10px;
}

/* =================================================== employee css starts ==================================================  */
#employeesList {
  padding: 20px;
}
#employeesList .employeeInfo,
.usersList .employeeInfo {
  cursor: pointer;
  padding: 8px 20px 8px 27px;
  background-color: var(--lightBlue);
  border: 1px solid #e3edef;
  border-left: 0px;
  margin: 20px 0px;
  position: relative;
}
#employeesList .employeeInfo::before,
.usersList .employeeInfo::before {
  content: "";
  position: absolute;
  left: 0px;
  height: 102.5%;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  background-color: var(--blue);
}
#employeesList .employeeInfo:nth-child(1) {
  margin-top: 0px;
}
#employeesList .employeeInfo:last-child {
  margin-bottom: 0px;
}
.empImage {
  width: 100%;
  height: 100%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.empImage img {
  height: 80px;
  width: 80px;
  box-shadow: 0px 0px 8px rgb(76 78 100 / 98%);

  object-fit: cover;
  border-radius: 50%;
}
.empNameRole {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.empName {
  font-size: 17px;
  font-weight: 600;
  color: var(--darkBlue);
}
.empRole {
  font-size: 14px;
  color: #6c7a89;
  font-style: italic;
}
.NumberEmail {
  color: var(--darkBlue);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.mb-0 {
  margin-bottom: 0;
}
.addEmployeeFormBox {
  padding: 20px;
}
.addEventFormBox .form-label {
  margin-bottom: 6px;
  font-size: 16px;
}
.addEmployeeFormBox .alert {
  width: 100%;
}
.addEmployeeFormBox {
  width: 65%;
  padding: 15px;
  border: 1px solid #e3edef;
  box-shadow: 0px 0px 8px rgb(76 78 100 / 30%);
  position: relative;
  border-radius: 8px;
}
#employeeDetailsBox {
  box-shadow: 0px 0px 8px rgb(76 78 100 / 30%);
  padding: 30px 20px;
  width: 70%;
  position: relative;
  border-radius: 8px;
  margin: calc(20px + 45.5px) auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#employeeDetailsBox .empDetailImage {
  display: block;
}
#employeeDetailsBox .empDetailImage img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
}
#employeeDetailsBox .empDetailName {
  width: 100%;
  text-align: center;
  font-weight: 600;
  margin-top: 10px;
  font-size: 19px;
}

#employeeDetailsBox .empDetailRole {
  text-align: center;
  padding: 5px 10px;
  background-color: var(--lightBlue);
  border-radius: 4px;
}
#employeeDetailsBox .empDetail {
  width: 100%;
  margin-top: 40px;
}
.fs-18 {
  font-size: 18px;
}
.fs-14 {
  font-size: 14px;
}
.font-size-12 {
  font-size: 12px;
}
.SingleInfo {
  display: flex;
  font-size: 15px;
}
.infoDescription {
  word-break: break-all;
}
.infoTitle {
  font-weight: 600;
  margin-right: 10px;
  text-transform: capitalize;
  /* justify-content: center;
    align-items: center; */
}
.action {
  width: 100%;
  display: flex;
  margin-top: 24px;
  justify-content: space-between;
}
.action button {
  border: none;
  width: 49%;
  padding: 6px 10px;
  border-radius: 4px;
  color: #ffffff;
  background-color: var(--blue);
  text-transform: capitalize;
  letter-spacing: 0.2px;
}
#employeeSearchFormBox,
#eventSearchFormBox,
#leavesSearchFormBox {
  width: 50px;
  height: 35px;
  display: flex;
  padding: 5px 0px;
  justify-content: end;
  align-items: center;
  overflow: hidden;
  transition: 0.7s;
}
.searchIcon,
.resetSearch,
.filterIcon {
  height: 33px;
  width: 33px;
  padding: 3px;
  justify-content: center;
  align-items: center;
  background-color: var(--blue);
  border-radius: 50%;
}
#searchEmployeeForm input,
#searchEventForm input,
#searchLeaveform input button {
  outline: none;
  border: none;
}
#searchEmployeeForm button,
#searchEventForm button {
  height: 32px;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--blue);
  border-radius: 0px 20px 20px 0px;
  color: var(--lightBlue);
  border: none;
}
#searchEmployeeForm input,
#searchEventForm input {
  height: 32px;
  width: 200px;
  display: flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  color: var(--blue);
  border-radius: 20px 0px 0px 20px;
  background-color: var(--lightBlue);
  font-size: 14px;
}
.resetSearch {
  margin-right: 12px;
}
.eventFilterBox {
  width: 150px;
  background-color: #ffffff;
  position: absolute;
  z-index: 5;
  border-radius: 6px;
  transform: translateX(-50%);
  box-shadow: 0px 0px 8px rgb(76 78 100 / 30%);
}
.eventFilterBox::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 10px solid #ffffff;
}
.eventFilterBox .eventsFilterList ul {
  padding: 0;
  margin: 0;
  pointer-events: none;
}
.eventFilterBox .eventsFilterList .filterItem {
  list-style-type: none;
  padding: 5px 10px;
  box-shadow: 0px 2px 5px rgba(49, 50, 57, 0.2);
  pointer-events: all;
  cursor: pointer;
}
.eventFilterBox .eventsFilterList .filterItem span {
  font-size: 13px;
}
.eventFilterBox .eventsFilterList .filterItem input {
  width: 100%;
  border-radius: 4px;
  padding: 2px;
  border-width: 1px;
  border: none;
  background-color: #f7fbfc;
}

/* getting event shift details btn  */
#getEventShifts button,
#hideEventShiftsBtn,
#getEmployeeShifts button,
#hideEmployeeShiftsBtn,
#getEventCosts,
#deleteEventBtn,
#removeEmployeeBtn {
  border: none;
  color: #d6e6f2;
}
#paginationSection {
  margin: 10px 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-link {
  color: var(--darkBlue);
  cursor: pointer;
}
.centerHeading {
  text-align: center;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 18px;
  color: var(--darkBlue);
  letter-spacing: 0.2px;
  position: relative;
  margin-bottom: 15px;
}

.centerHeading::before {
  content: "";
  position: absolute;
  bottom: 0%;
  width: 90%;
  height: 1px;
  background-color: #6c7a89;
  left: 50%;
  transform: translate(-50%, -50%);
}

#eventDetailsBox,
#shiftDetails {
  position: relative;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}
.eventInfoAndTeamBox,
.eventReadingsBox {
  padding: 10px 20px;
  width: 50%;
  box-shadow: 0px 0px 8px rgb(76 78 100 / 30%);
}
.eventReadingsBox .meterReadingImages {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.eventReadingsBox .meterReadingImages img,
.transaction-images {
  width: 90%;
  height: 100px;
  object-fit: cover;
}

#destinationToSource {
  margin-top: 30px;
}
.eventInfoAndTeamBox .action {
  margin-top: 0px;
}
#leaveDetailsBox .smallHeading {
  background-color: #6c7a89;
  font-size: 14px;
}
#leaveDetailsBox,
#eventsOnLeaveDate,
.addEmployeeFormBox {
  width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 20px));
}
.leaveRequestInformation {
  padding: 15px;
}
#leaveDetailsBox .action {
  margin-top: 0px;
}

.disableBtn {
  pointer-events: none;
  background-color: #6c7a89 !important;
}

#acceptBtn,
.approved,
.green-bg {
  background-color: #59ce8f !important;
}
.blue-text {
  color: var(--blue);
}
.green-text {
  color: #59ce8f;
}
.red-text {
  color: #eb5353;
}
#declineBtn,
.declined,
.red-bg {
  background-color: #eb5353 !important;
}
.red-bg-2 {
  background-color: rgba(235, 83, 83, 0.15) !important;
}
.pending,
.yellow-bg {
  background-color: #fff6ac !important;
  color: #083044bf !important;
}
.grey-bg {
  background-color: #668393 !important;
}
.golden-text {
  color: #f2cd5c;
}
#eventsOnLeaveDate .eventVenue {
  margin: 0px;
  font-weight: 500;
}
#eventsOnLeaveDate .eventDate {
  font-size: 13px;
  margin: 0px;
  color: #585b5d;
}
#venue-suggestions-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  max-height: 120px;
  overflow: auto;
}
.suggestion-item {
  padding: 3px 10px;
  margin-bottom: 2px;
  cursor: pointer;
  background-color: #e9f5ff;
  font-size: 14px;
  font-family: var(--monFont);
  font-weight: 500;
  border-radius: 4px;
}
#eventsOnLeaveDate select {
  font-size: 14px;
  text-transform: capitalize;
}
#leaveAcceptBtns {
  margin-top: 0px;
  margin-bottom: 10px;
  padding: 0px 10px;
}
.opacity-4 {
  opacity: 0.4 !important;
}
.custom-title {
  font-size: 24px;
  padding: 5px;
}
.custom-icon {
  font-size: 15px;
}
.custom-confirm-button,
.custom-cancel-button {
  padding: 8px 54px;
  font-size: 18px !important;
}
.small-icon {
  font-size: 12px;
}
/*=========================================== shifts style started ====================================================== */
#eventShiftsBox,
#employeeShiftsBox,
#eventTransactionsBox {
  position: relative;
  padding: 20px;
  width: 100%;
  overflow: scroll;
  height: 93%;
}
#eventShiftsBox .shiftInfoHeading,
#employeeShiftsBox .shiftInfoHeading {
  font-weight: 500;
  text-transform: capitalize;
}
#eventShiftsBox .shiftInfoData,
#employeeShiftBox .shiftInfoData {
  color: #696c6f;
}

#eventShiftsBox .shiftInfoData span,
#employeeShiftBox .shiftInfoData span {
  word-break: keep-all;
}
.tfoott {
  background-color: #bbc4d7;
}
#eventShiftsBox th,
#eventShiftsBox td,
#employeeShiftsBox th,
#employeeShiftsBox td {
  width: 50px !important;
}
#eventShiftsBox p,
#employeeShiftsBox p {
  margin: 0;
}
.employeeShiftRange {
  background-color: var(--lightBlue);
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #e3edef;
  margin-bottom: 10px;
  align-items: center;
}

#shiftsRangeForm input[type="submit"],
.logoutBtn {
  border: none;
  height: 38px;
  padding: 6px 10px;
  border-radius: 4px;
  color: #ffffff;
  background-color: var(--blue);
  text-transform: capitalize;
  letter-spacing: 0.2px;
}
.dashboard .employeeList {
  overflow-x: hidden;
}
.currentRole {
  padding: 3.4px 6px;
  color: #1a374d;
  font-size: 15px;
  border-radius: 3px;
  font-weight: 500;
}
.shiftStartTime {
  background-color: #8ba6c32e;
  padding: 4px;
  color: #083044bf;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  min-width: 50%;
}
#refreshOnDutyEmployees {
  cursor: pointer;
}
.performerImgBox {
  display: flex;
  justify-content: center;
}
.performerImgBox img {
  height: 70px;
  width: 70px;
  box-shadow: 0px 0px 8px rgb(76 78 100 / 98%);
  object-fit: cover;
  border-radius: 7%;
}
.ratingBy-for-leaderBoard {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;

  height: 18px;
  width: 20px;
  margin-top: 2px;
  position: relative;
  z-index: 1;
  font-size: 1px;
  font-family: var(--monFont);
}
#ratingDuration {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../images/Timer.png");
  background-position: center center;
  background-size: 13px 16px;
  background-repeat: no-repeat;
  color: var(--blue);
}
.ratingBy-for-leaderBoard option {
  color: var(--blue);
  font-size: 14px;
}
/*=================================================== admin login css startas ============================== */
.formContainer {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: var(--content-background);
  display: flex;
  align-items: center;
  justify-content: center;
}
.formBox {
  background-color: #fff;
  width: 400px;
  border-radius: 6px;
  padding: 20px;
  box-shadow: rgb(76 78 100 / 18%) 0px 0px 10px 0px;
}
@media only screen and (max-width: 480px) {
  .formBox {
    background-color: #fff;
    width: 90%;
    border-radius: 6px;
    padding: 15px;
    box-shadow: rgb(76 78 100 / 18%) 0px 0px 10px 0px;
  }
  .welcomeAdmin {
    padding: 6px 0px;
  }

  .welcomeAdmin .mainHeading {
    font-size: 18px;
  }
}
.formContainer .formBox input {
  font-size: 14px;
}
.loginHeading {
  color: var(--darkBlue);
  font-family: var(--menuFont);
  font-size: 28px;
  margin-bottom: 0;
  letter-spacing: 0.2px;
  text-transform: capitalize;
  text-align: center;
}
hr {
  margin-top: 0px;
  color: var(--blue);
}
.emptyInput {
  color: #ec3a3a;
  font-size: 12px;
  letter-spacing: 0.2px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
.pointer-events-none {
  pointer-events: none !important;
  background-color: #8c989f !important;
}
/* hide up down arrow from input number type  */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
  -webkit-appearance: none;
  appearance: none;
}
#forgotPassword {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  text-decoration: none;
  color: #0296f8;
}

.sendOtpText {
  font-size: 15px;
  color: #1a374d;
  margin-bottom: 5px;
  font-weight: 500;
}
.passwordInfo {
  font-size: 13px;
  font-weight: 500;
  color: #57829e;
}
.changePasswordContainer {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ? =========================================== LIVE KABADDI TOURNAMENT =========================================== */

/* live tournament nav var settings  */
.nav-link {
  text-transform: capitalize;
  color: var(--blue);
  font-weight: 500;
  font-size: 18px;
  color: var(--lightBlue) !important;
  letter-spacing: 0.3px;
  padding: 10px 20px;
}
.nav-item .active {
  background-color: var(--blue) !important;
  border: none !important;
}
.nav-tabs {
  background-color: var(--darkBlue);
  color: var(--lightBlue) !important;
  border-radius: 8px 8px 0px 0px;
}
.big-heading {
  color: var(--darkBlue);
}

.liveContentBox {
  /* position: relative; */
  padding: 20px 20px;
  border: 1px solid #b6b6b6;
  border-top: none;
  border-radius: 0px 0px 8px 8px;
  overflow-y: auto;
}

.tournamentContent .form-label {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
}
.tournamentContent {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 5px;
  background-color: #fff;
}

/* ? this animation is not in use ANIMATION (line animation starts and ends )  */

/* ? forms settings for live tournament content editing  */
.liveContentForms input,
.liveContentForms textarea,
.liveContentForms #position {
  width: 100%;
  border: 1px solid rgba(64, 103, 130, 0.6);
  padding: 3px 6px;
  border-radius: 3px;
}
.liveContentForms input[type="submit"] {
  background-color: var(--blue);
  color: var(--lightBlue);
  text-transform: capitalize;
  font-weight: 500;
}
.liveContentForms input[type="radio"] {
  width: auto;
  color: var(--blue);
  background-color: var(--blue);
  margin-right: 3px;
}
.liveContentForms select {
  padding: 3px 6px;
}
#morePrizeBox,
#moreBestPrizeImageBox {
  padding: 13px;
  border: 1px solid;
  background-color: #f7fbfc;
  margin-bottom: 18px;
  border-radius: 3px;
  border: 1px solid rgba(64, 103, 130, 0.6);
  overflow: hidden;
  height: 172px;
  transition: height 0.7s, padding 0.7s, margin 0.7s;
}
#morePrizeBox input {
  border: 1px solid #e3edef;
}
#morePrizeBox.hide-box {
  height: 0px;
  padding: 0;
  margin: 0;
  border: none;
}
.addMorePrize {
  display: block;
  text-align: center;
  border: none;
  border-radius: 3px;
  width: 100%;
  margin-bottom: 13px;
  padding: 4px 6px;
  color: #fff;
  font-weight: 500;
  text-transform: capitalize;
}
.liveContentForms input:focus,
.liveContentForms textarea:focus {
  outline: none;
  border: 1px solid rgba(64, 103, 130, 0.6);
  box-shadow: none;
}
.radioLabel {
  text-transform: capitalize;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
  margin-right: 20px;
  color: var(--blue);
}
.width-50 {
  width: 50% !important;
}
.fs-14 {
  font-size: 14px;
}
.height-700 {
  height: 682px;
  overflow-y: auto;
}
.max-height-700 {
  max-height: 682px;
  overflow-y: auto;
}
.allTeamsList {
  margin-top: 20px;
}
.teamInfo {
  width: 100%;
  background-color: #f7fbfc;
  border: 1px solid #e3edef;
  color: var(--darkBlue);
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
}

.teamName {
  border: none;
  background-color: transparent;
  padding: 4px 10px;
  width: 74%;
  font-weight: 500;
  resize: none;
}
.teamName:focus {
  outline: none;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: none;
  font-weight: 400;
}
.teamActions {
  padding: 0px 8px;
  align-self: center;
}
.teamActions i {
  padding: 0px 5px;
  cursor: pointer;
  margin: 0px 2px;
}
#timingsForm label {
  font-size: 15px;
}
#updateTimings {
  background-color: var(--blue);
  color: var(--lightBlue);
  text-transform: capitalize;
  font-weight: 500;
  border: none;
  margin-top: 7px;
  width: 100%;
  padding: 5px;
  border-radius: 3px;
}
.slider-container {
  width: 270px;
  margin: 20px 0;
  position: relative;
}
.slider {
  position: absolute;
  top: 0;
  left: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: #e5e7eb;
  outline: none;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
}
.slider::-moz-range-thumb {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
}
.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 8px;
  border-radius: 5px;
  background: var(--blue);

  pointer-events: none;
}
.slider-handle {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  transform: translateY(-38%);
  background: var(--blue);

  border-radius: 50%;
  color: white;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.width-fit-content {
  width: fit-content;
}

/* * ==============================================  upcoming matches css ========================================= */
.pointer {
  cursor: pointer;
}

.vsIcon {
  font-family: var(--menuFont);
  font-weight: 600;
  font-size: 23px;
  color: var(--blue);
}

.matchTeamNameText {
  padding: 4px 0px;
  font-weight: 600;
  color: var(--darkBlue);
}
.matchInfo {
  width: 100%;
  background-color: #f7fbfc;
  border: 1px solid #e3edef;
  color: var(--darkBlue);
  border-radius: 4px;
  margin-top: 14px;
  padding: 0px 10px;
}
.matchInfo .vsIncon {
  justify-self: flex-end;
}
#upcomingMatchRound {
  border: 1px solid rgba(64, 103, 130, 0.6);
  padding: 3px 6px;
  border-radius: 3px;
  width: 100%;
}
.w-auto {
  width: auto !important;
}

#upcomingMatchRound:focus {
  outline: none;
  border: 1px solid rgba(64, 103, 130, 0.6);
  box-shadow: none;
}
img.sponsorImage {
  object-fit: contain;
  width: 45px;
}
#cancelSponsorUpdate {
  background-color: var(--blue);
  color: var(--lightBlue);
  text-transform: capitalize;
  font-weight: 500;
  border: none;
  border-radius: 3px;
  padding: 4px 6px;
  width: 49%;
}

#updateSponsor {
  width: 49%;
}

#sponsorImagePreviewContainer {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  /* padding: 100px 0px 40px 0px; */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 111;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}
#sponsorImagePreviewContainer .imageContainer {
  width: 90% !important;
}
#sponsorImagePreviewContainer .previewImage {
  width: 800px !important;
  height: 800px;
  max-width: 90%;
  object-fit: contain;
}
.suggestions {
  padding: 0px;
}
.suggestions li {
  list-style-type: none;
  padding: 5px 10px;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2px;
  cursor: pointer;
}
.suggestions li:hover {
  background-color: rgba(234, 247, 255, 0.9);
}
#saveGeneralInfoBtn[disabled] {
  background-color: rgba(64, 104, 130, 0.4);
  border-color: transparent;
}
#updatePrizeBtn[disabled] {
  background-color: rgba(64, 104, 130, 0.4);
  border-color: transparent;
}
#addAllTeams[disabled] {
  background-color: rgba(64, 104, 130, 0.4);
  border-color: transparent;
}
#updateTimings[disabled] {
  background-color: rgba(64, 104, 130, 0.4);
  border-color: transparent;
}

.bestPrizeImagePreview {
  width: 180px;
  height: auto;
}
#bestPrizeImageList {
  width: 100%;
  padding-top: 30px !important;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  position: relative;
}

#bestPrizeImageList .closeBtn {
  cursor: pointer;
  padding: 10px;
  position: absolute;
  top: 0px;
  right: 5px;
  margin-bottom: 10px;
}
#bestPrizeImageList li {
  list-style-type: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  padding: 0 0 4px 0;
}

/* #bestPrizeImageList li.selected {
  background-color: rgba(64, 103, 130, 0.3);
} */
.bestPrizeImage {
  width: auto;
  margin: 0px auto;
  display: block;
  height: 70px;
  pointer-events: none;
}
#addMoreBestPrizeImageBtn {
  width: 100%;
  background-color: var(--blue);
  padding: 5px;
  border-radius: 5px;
  text-transform: capitalize;
  color: #fff;
  text-align: center;
  border: none;
}
#moreBestPrizeImageBox {
  height: auto;
  position: relative;
}

#moreBestPrizeImageBoxCloseBtn {
  position: absolute;
  top: 15px;
  right: 10px;
  cursor: pointer;
}
.mainWrapper {
  width: 100%;
  padding: 10px 20px;
  font-family: "Montserrat", sans-serif;
}

.fw-600 {
  font-weight: 600;
}

.fw-500 {
  font-weight: 500;
}

.margin-0 {
  margin: 0 !important;
}

#createTournamentHeading {
  padding: 10px 15px;
  font-weight: 600;
  font-size: 17px;
}

/* * rate employee by admin dialog box and overlay */
.rate-employee-container {
  position: fixed;
  z-index: 11111;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.25);
  height: 100vh;
  width: 100vw;
}
.rateEmployeeBox {
  position: relative;
  padding: 20px 15px;
  border-radius: 8px;
  background-color: #fff;
  min-width: 350px;
  min-height: 200px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#rating i {
  margin: 0px 3px;
  color: #dbb43d;
  cursor: pointer;
  font-size: 19px;
}
#close-rate-employee-box {
  position: absolute;
  right: 10px;
  top: 5px;
  cursor: pointer;
  color: #6c7a89;
}
#rate-employee-btn {
  padding: 7px 20px;
  text-align: center;
  color: #d6e6f2;
  background-color: #406882;
  border-radius: 4px;
  text-transform: capitalize;
  margin-top: 20px;
  font-size: 17px;
  display: block;
  font-weight: 500;
  border: none;
}
.shift-action-btn {
  border: none;
  outline: none;
  padding: 6px 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 4px;
}
.detailedShiftDataContainer {
  position: absolute;
  z-index: 99999;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100vh;
  padding: 100px;
  display: flex;
  flex-direction: column;
}
.detailedEventShifts {
  max-width: 100%;
  max-height: 100%;
  background-color: #fff;
  border-radius: 20px;
  overflow: auto;
  margin-top: 10px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#createTournamentForm .frameDesignImg {
  width: 200px;
  height: auto;
}
