
/* ********* Alarm Lists **************** */

.container {
    width: 100%;
    height: calc(100% - 270px);
    background-color: #171717;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* ****************** INPUT ********************** */
#inputBox {
    width: 80%;
    height: 55px;
    position: relative;
    top: 10px;
    left: 10%;
    padding: 2px 8px;
    margin-bottom: 10px;
    background-color: black;
    border-radius: 8px;
}

#timeInput {
    width: calc(100% - 50px);
    height: 50px;
    border: none;
    position: relative;
    outline: none;
    color: cyan;
    background: black;
    background-size: 46px;
    background-repeat: no-repeat;
    background-position: 90%;
    font-size: 22px;
    font-weight: 400;
    padding: 0 5px 0 20px;
    margin-bottom: 10px;
    overflow: visible;
    border-radius: 8px;
    cursor: pointer;
}

#timeInput:focus {
background-color: #9206fd;}

#timeInput::-webkit-calendar-picker-indicator {
    position: relative;
    background-image: url(media/clock.png);
    height: 46px;
    width: 46px;
}

.bi-stopwatch {
    position: absolute;
    right: 0;
    font-size: 40px;
}

#add_alarm {
    background-color: black;
    border: none;
    position: absolute;
    left: calc(100% - 50px);
    font-size: 40px;
}

/* ************************* ALARM LIST *********************** */
.list {
    width: 80%;
    height: calc(100% - 70px);
    position: relative;
    left: 10%;
    background: black;
    font-size: 22px;
    font-weight: 400;
    padding: 8px;
    margin-top: 10px;
    border-radius: 8px 8px 0 0;
    list-style-type: none;
    overflow-y: scroll;
}

.list::-webkit-scrollbar {
    display: none;
}

.list li {
    background-color: #171717;
    width: 100%;
    height: 50px;
    line-height: 47px;
    margin-bottom: 8px;
    padding: 0 15px;
    border-radius: 8px;
}

.list li:hover {
    box-shadow: 0px 0px 8px 4px #A32EFF;
    cursor: pointer;
}

.list li i {
    position: absolute;
    font-size: 30px;
}
.bi-bell-fill{
    color: #aa3efc;
    left: calc(100% - 50px);
}
.bi-bell-slash-fill{
    color: #9206fd;
    left: calc(100% - 50px);
}
.bi-trash {
    color: #00BEC5;
    left: calc(100% - 105px);
}
.off {
    display: none;
}

.alarm_on_off{
    width: 440px;
    height: 100px;
    position: absolute;
    border-radius: 20px;
    border: 2px solid #aa3efc;
    z-index: 10;
    top: 110px;
    background-color: #171717;
    text-align: center;
    font-size: 23px;
    font-weight: 50;
    padding: 16px;
    cursor: pointer;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    
}
.alarm_on_off:hover{
    box-shadow: 0px 0px 8px 4px #A32EFF;
}

.alarm_on_off span{
  font-size: 20px;
  font-weight: lighter;
  color: white;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
