.schdulingTabSection .nav-tabs li a {
  color: #000;
}
.schdulingTabSection .tab-content {
  margin-top: 15px;
}

.scheduleModal .modal-header {
  text-align: left;
}

.schduleBtn {
  padding: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background-color: #f36921;
  border: 1px solid #f36921;
  border-radius: 4px;
  height: fit-content;
}
    @media (max-width:768px){
            table tr th.mobileViewPos{
      position: relative !important;
    }
     table tr td.mobileViewPos{
      position: relative !important;
    }
  }

.scheduleApointmentCard {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 15px;
  border-radius: 4px;
  border: 1px solid #d9d9d9;
  margin-top: 25px;
}

.bodyTit {
  font-size: 18px;
}

.btnPrime {
  padding: 15px 8px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background-color: #f36921;
  border: 1px solid #f36921;
  border-radius: 4px;
  height: fit-content;
  margin-top: 15px;
}

.backWardAccess {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
  width: 100%;
  flex-direction: row-reverse;
}

.formLabel {
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

.selectDateTime .pickTimeBoxContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.selectDateTime .pickTimeBoxContainer .pickTimeBox {
  background: #ffffff;
  border-radius: 4px;
  padding: 8px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.selectDateTime .pickTimeBoxContainer .pickTimeBox .radioBox input {
  margin-top: 5px;
  height: 16px;
  width: 16px;
}

.selectDateTime .selectDateContainer .selectedDate {
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
}

.selectDateTime .selectDateContainer {
  margin-bottom: 20px;
}

.radioCheckerListGroup {
  margin-bottom: 25px;
}

.radioCheckerListGroup .radioChecker {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 15px;
}
.CheckinTabContent {
  margin-bottom: 15px;
}
.radioCheckerListGroup .radioChecker .radiocheck {
}
.radioCheckerListGroup .radioChecker input {
  margin: 0;
}
.radioCheckerListGroup .radioChecker h4 {
}
.scheduler .schedulerTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.selectDateContainer .scheduler {}
.selectDateContainer .scheduler .schedulerTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 15px;
}
.selectDateContainer .scheduler .schedulerTop .schedulerActions {
    cursor: pointer;
}
.selectDateContainer .scheduler .schedulerMain .schedulerDate {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(60px,1fr));
    grid-gap: 10px;
    gap: 10px;
    margin-bottom: 15px;
}

.selectDateContainer .scheduler .schedulerMain .schedulerDate .dayPreview span {
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
}

.selectDateContainer .scheduler .schedulerMain .schedulerDate .dayPreview {
    display: grid;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 90px;
    border-radius: 12px;
    background: #fff;
    color: #333;
    cursor: pointer;
    margin: 0;
    border: 1px solid #0000004d;
    text-align: center;
    padding: 5px 0;
}

.selectDateContainer .scheduler .schedulerMain .schedulerDate .dayPreview.selected {
    border: 1px solid #f36921;
    background: #f36921;
    color: #fff;    
}