body{
	background-color: black;
	position: relative;
}
#container{
	background-color: white;
	position: absolute;
	top: 80px;
	left: 35%;
	width: 60vh;
	height: 80vh;
	border-radius: 5px;
	display: flex;
	align-content: center;
	justify-content: flex-start;
	flex-direction: column;
	border: 15px solid darkcyan;
	/*overflow: scroll;*/
}
#clock{
	width: 99.9%;
	height: 80%;
	/*border-radius: 5px;*/
	background-color: lightgrey;
	/*margin: 20px;*/
	/*opacity: 0.5;*/
	text-align: center;
	font-family: cursive;
	position: relative;
	/*display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-content: center;
	justify-content: center;*/
	text-shadow: 2px 2px 10px white;
	color: black;
	background-image:url("https://www.noupe.com/wp-content/uploads/2017/10/bubblydefault.gif") ;
	background-size: cover;
}
#clock p{
	/*display: block;*/
	position: absolute;
	margin-left: 10%;
	text-align: center;
}
#list{
	overflow: scroll;
	height: 65%;
	margin: 20px;

	/*background-color: yellow;*/
}
::-webkit-scrollbar {
    display: none;
}
#alarm01:nth-child(odd){
	background-color: yellow;
}
#alarm01:nth-child(even){
	background-color: red;
}
#time{
	/*color: white;*/
	position: absolute;
	/*margin: 20px;*/
	/*background-color: yellow;*/
	font-size: 2.5rem;
	top: 25%;
	left: 12%;
}
#day{
	font-size: 1.2rem;
	text-align: center;
	position: absolute;
	/*background-color: green;*/
	top: 50%;
	left: 28%;
}
.set-alarm{
	width: 90%;
	height: 40%;
	border-radius: 5px;
	background-color: whitesmoke;
	margin: 20px;
	opacity: 0.7;
	display: flex;
	align-content: center;
	justify-content: space-between;
	box-shadow: 1px 1px 4px 4px grey;
}
.set-alarm span{
	font-size: 1.5rem;
	font-family: cursive;
	margin: 10px;
	color: black;
	/*font-weight: 700;*/
}
#settings{
	width: 20%;
	margin: 10px;
}
.toggle 
{
	position : relative ;
	display : inline-block;
	width : 40px;
	height : 22px;
	background-color: white;
	border-radius: 30px;
	border: 2px solid black;
}
            
    /* After slide changes */
.toggle:after 
{
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: black;
	top: -1px; 
	left: -1px;
	transition:  all 0.5s;
}
.checkbox:checked + .toggle::after
{
  	left : 18px; 
}
.checkbox:checked + .toggle 
{
  	background-color: green;
}
.checkbox 
{ 
  	display : none;
}
#delete{
	font-size: 1.2rem;
	margin-left: 20px;
}
#modal{
	width: 15%;
	height:10%;
	margin-left: 45%;
	margin-bottom: 8%;
	background-color: black;
	/*border-radius: 50%;*/
}
.modal-dialog{
	position: absolute;
	top: 30%;
	left: 37%;
	width: 25%;
	height: 75%;
}
.modal-content{
	background-color: powderblue;
}
#save-changes{
	width: 20%;
	height: 30%;
	background-color: black;
	margin-left: 0px;
	font-family: cursive;
	text-align: center;
}
@media screen and (max-width: 600px){
	#container{
		top: 0%;
		left: 0%;
	}
}