@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);
.regist-frm-sec select{
	border: 1px solid #e5e5e5;
    border-radius: 5px;
}
.label {
    display: flex;
}

.label span {
    color: red;
    position: relative;
    top: -2px;
    left: 0px;
}

.searching{
    margin-top: 32px;
}

.days_s {
    display: flex;
    align-items: end;
    gap: 20px;
    width: max-content;
    margin: auto;
}
.days_s .form-group {
    display: flex;
    align-items: center;
    gap: 20px;
}
.days_s .form-group label{
margin: 0;
}
.days_s .form-group select{
    min-width: 220px;
}
.card-header .btn {
    margin-left: 15px;
}
:root {
  --primary-color: #f90a39;
  --text-color: #1d1d1d;
  --bg-color: #f1f1fb;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
/*  font-family: "Poppins", sans-serif;*/
}
body {
  background-color: #fff;
}
.container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar {
  width: 100%;
  max-width: 380px;
  padding: 30px 20px;
  border-radius: 10px;
  background-color: var(--bg-color);
}
.calendar .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #ccc;
}
.calendar .header .month {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
}
.calendar .header .btns {
  display: flex;
  gap: 10px;
}
.calendar .header .btns .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: #fff;
  background-color: #245c29;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}
.calendar .header .btns .btn:hover {
  background-color: #245c29;
  transform: scale(1.05);
}
.weekdays {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.weekdays .day {
  width: calc(100% / 7 - 10px);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.days {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.days .day {
    width: calc(100% / 7 - 10px);
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    background-color: #fff;
    transition: all 0.3s;
    cursor: pointer;
}
.days .day:not(.next):not(.prev):hover {
  color: #fff;
  background-color: #245c29;
  transform: scale(1.05);
}
.days .day.today {
  color: #fff;
  background-color: #245c29;
}
.days .day.next,
.days .day.prev {
  color: #ccc;
}

/* Credits */
.credits a {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #aaa;
}
.credits span {
  color: var(--primary-color);
}

.cal-s{
    justify-content: center;
}
.anchor{
  color: black;
  font-size: 13px;
}

i {
    font-family: 'FontAwesome' !important;
}
table .btn i {
/*  color: #fff;*/
}

td.fixed-td {
    max-width: 300px;
}

.task-cat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.task-cat > * {
    width: max-content;
}

.text-start {
    text-align: left !important;
}

.todo-list>li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.todo-list>li p{
  margin:0;
}

.todo-container{
    height: 100%;
    max-height: 342px;
    overflow: auto; }