* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: poppins;
}

body {
  color: white;
  background-color: #000000;
  height: 100vh;
  overflow: hidden;
}

#header {
  color: white;
  background-color: #1A1A1A;
  padding: 16px;
}
@media (max-width: 576px) {
  #header {
    border-radius: 0px 0px 15px 15px;
  }
}
#header .profile-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#header .profile-container .profile-picture {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #c6aa9a;
  background-color: #3a3a3a;
  border-radius: 50%;
  cursor: pointer;
}
#header .welcome-name {
  font-size: 16px;
  color: #959595;
}
#header .date-today {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
}

.search-box {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #c6aa9a;
  background-color: #3a3a3a;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.4) 5px 5px, rgba(0, 0, 0, 0.3) 10px 10px, rgba(0, 0, 0, 0.2) 15px 15px, rgba(0, 0, 0, 0.1) 20px 20px, rgba(0, 0, 0, 0.05) 25px 25px;
}
.search-box .input-search-box {
  width: 100%;
  height: 30px;
  background: linear-gradient(to right, #9a42d0, rgba(87, 24, 182, 0.431372549));
  border-radius: 6px;
  padding: 7px 8px;
  outline: none;
  border: none;
}
.search-box ::placeholder {
  color: #959595;
}
.search-box .bx-search {
  font-size: 26px;
  cursor: pointer;
}

.schedules {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 16px;
}
.schedules .schedule-item-add {
  position: relative;
  padding: 35px 15px 16px;
  background: rgba(26, 26, 26, 0.5921568627);
  background-clip: padding-box;
  border: solid 1px transparent;
  border-radius: 7px;
  max-width: 300px;
}
.schedules .schedule-item-add:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, #c6aa9a, #9a42d0);
}
.schedules .icon-schedule {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 0px;
  cursor: pointer;
}
.schedules .icon-schedule .bx-category {
  font-size: 50px;
  color: #959595;
  transform: translate(0px, -55px);
  text-shadow: 0px 6px 10px rgba(0, 0, 0, 0.8);
  transition: 0.2s ease-in-out;
}
.schedules .icon-schedule .bx-category:hover {
  font-size: 65px;
}
.schedules .title-schedule {
  font-size: 20px;
  font-weight: 500;
}
.schedules .Category-description {
  font-size: 14px;
  color: #959595;
  margin-top: 9px;
  line-height: 19px;
}
.schedules .checkin-btn {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(60deg, #9a42d0, rgba(191, 95, 250, 0.4823529412));
  border-radius: 10px;
  margin-top: 18px;
  cursor: pointer;
  transition: 0.4s;
}
.schedules .checkin-btn:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.free-reminder {
  width: 100%;
  height: 250px;
  overflow: auto;
  padding: 0px 16px 16px;
}
.free-reminder .header-free-reminder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  background-color: #000000;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}
.free-reminder .header-free-reminder .see-all {
  color: #9a42d0;
}
.free-reminder .free-reminder-item {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.free-reminder .clock-part {
  width: 100px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.free-reminder .task-part {
  width: inherit;
  height: 100%;
  color: white;
  background-color: #1A1A1A;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 7px;
}
.free-reminder .title-part {
  font-weight: 500;
}
.free-reminder .text-part {
  color: #959595;
  margin-top: 5px;
  line-height: 22px;
}
.free-reminder .delete-part {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  font-size: 30px;
  background-color: #9a42d0;
  border-radius: 50%;
  cursor: pointer;
  color: #3a3a3a;
  transition: 0.3s;
}
.free-reminder .delete-part:hover {
  color: rgba(148, 40, 40, 0.8);
  transform: scale(0.8);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.free-reminder::-webkit-scrollbar {
  width: 0px;
}

#footer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  color: white;
  background-color: rgba(26, 26, 26, 0.3803921569);
  padding: 10px 16px;
  transition: 0.3s;
}
@media (max-width: 576px) {
  #footer {
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 576px) {
  #footer .home, #footer .user-profile, #footer .add-reminder-plus {
    display: none;
    opacity: 0;
  }
}
#footer .home {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 34px;
  font-size: 23px;
  cursor: pointer;
  color: #959595;
  transition: 0.3s;
}
#footer .home:hover {
  color: #9a42d0;
}
#footer .add-reminder-plus {
  font-size: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 34px;
  cursor: pointer;
  color: #959595;
  transition: 0.3s;
}
#footer .add-reminder-plus:hover {
  color: #9a42d0;
  text-shadow: 0px 8px 10px rgba(0, 0, 0, 0.8);
}
#footer .user-profile {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 34px;
  font-size: 23px;
  color: #959595;
  cursor: pointer;
  transition: 0.3s;
}
#footer .user-profile:hover {
  color: #9a42d0;
}

.modal-pupup {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(26, 26, 26, 0.7607843137);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  z-index: 1000;
  transition: 0.2s;
}
.modal-pupup .content {
  width: 500px;
  height: 473px;
  color: white;
  background-color: #3a3a3a;
  padding: 30px 16px;
  border-radius: 7px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal-pupup .title-alarm-text {
  width: 100%;
  height: 44px;
  color: white;
  background-color: #1A1A1A;
  margin-top: 8px;
  outline: none;
  border: none;
  padding: 4px 12px;
  border-radius: 3px;
}

.date-and-time {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0px 30px;
}
.date-and-time .date-alarm-plus, .date-and-time .time-alarm-plus {
  width: 45%;
  height: 100%;
}
.date-and-time .date-input, .date-and-time #timepicker {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 40px;
  color: white;
  background-color: #1A1A1A;
  margin-top: 8px;
  border-radius: 3px;
}
.date-and-time .date-input .bx-calendar, .date-and-time #timepicker .bx-calendar {
  font-size: 26px;
  padding-right: 6px;
}
.date-and-time .date-input #datepicker, .date-and-time #timepicker #datepicker {
  padding-left: 12px;
  outline: none;
  border: none;
  background: none;
}
.date-and-time #timepicker {
  border: none;
  outline: none;
}

.description-alarm-plus {
  margin: 30px 0px 30px;
}
.description-alarm-plus .description-text-area {
  color: white;
  background-color: #1A1A1A;
  width: 100%;
  height: 80px;
  outline: none;
  border: none;
  resize: none;
  margin-top: 8px;
  border-radius: 3px;
  padding: 8px 12px;
}

.cancel-add-btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.cancel-add-btn .cancel-btn, .cancel-add-btn #set-alarm-btn {
  color: white;
  background-color: rgba(87, 24, 182, 0.431372549);
  margin-right: 20px;
  padding: 9px 22px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}
.cancel-add-btn .cancel-btn:hover, .cancel-add-btn #set-alarm-btn:hover {
  background-color: rgba(67, 19, 138, 0.4039215686);
}
.cancel-add-btn #set-alarm-btn {
  color: white;
  background-color: #9a42d0;
  margin: 0;
  padding: 9px 32px;
}
.cancel-add-btn #set-alarm-btn:hover {
  background-color: rgba(154, 66, 208, 0.6);
}

.modal-pupup.active {
  visibility: visible;
  opacity: 1;
  top: 50%;
}

/*# sourceMappingURL=style.css.map */
