:root{
  --color: #eee;
  --bgcol: #3C4CFF;
  --font: Ubuntu, sans-serif;
}

*{
	box-sizing: border-box;
	line-height: 1.7;
	padding: 0;
	margin: 0;
	letter-spacing: .75px;
	font-family: var(--font);
}

@keyframes pulse{
  0%{
    background: #fff;
  }
  50%{
    background: #E7E7E7;
  }
  100%{
    background: #fff
  }
}

html{
	background: #EEE;
  accent-color: var(--bgcol);
}

button{
  border: none;
  transition: .5s linear;
  cursor: pointer;
}

button:focus, input:focus {
  outline: none;
  box-shadow: 0 0 0 4px #71DFFF99
}

header{
  display: flex;
  background: var(--bgcol);
  color: var(--color);
  justify-content: space-between;
  padding-top: 7px;
  height: 50px
}

h1{
  font-size: 1.5rem;
  font-weight: 400;
  padding-left: 7px
}

svg{
	width: 10rem;
	margin: 0 auto;
	height: 5rem;
}

header #ham{
  width: 40px;
  height: 40px;
  border-radius: 50px;
  margin-right: 10px;
  transition: 0.25s linear;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

#ham:hover{
  box-shadow: 0 0px 0 4px #cccccc77;
  background: #cccccc77;
}

#ham i{
	width: 100%;
	height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--color);
}

nav{
  width: 220px;
  position: absolute;
  right: 2px;
  top: 2px;
  background: var(--color);
  transform: translateY(-200px) scale(0,0);
  transition: all 0.5s ease;
  opacity: 0;
  box-shadow: 2px 2px 3px 4px #99999977;
  max-height: 0;
  padding: .5rem;
  z-index: 5
}

nav ul{
  list-style: none;
}

nav li{
  margin: 0 auto 5px
}

nav button{
  display: block;
  width: 100%;
  height: 40px;
  text-align: left;
  font-size: 0.95rem;
  border: none;
  background: transparent;
  padding: 4px;
  padding-left: 10px;
}

nav button:focus{
  animation-name: pulse;
  animation-duration: 0.75s;
  animation-iteration-count: 1;
}

#modal-bg{
  position: fixed;
  background: #333333aa;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  padding-top: 200px;
  z-index: 1
}

#modal h3{
	text-align: center;
}

#modal{
  background: var(--color);
  width: 75%;
  margin: auto;
  padding: 1rem;
  border-radius: 16px
  
}

#modal input{
  width: 100%;
  display: block;
  margin: 0 auto 16px;
  padding: 6px;
  height: 45px;
  font-size: 1rem;
  border: 1.5px solid var(--bgcol);
  border-radius: 6px;
  transition: .5s linear;
  background: transparent;
}

#modal input[type=date]{
	display: flex;
	align-items: center;
	justify-content: center;
}

#modal #formbtn{
  display: block;
  margin: 12px auto;
  width: 100%;
  height: 50px;
  text-transform: uppercase;
  background: var(--bgcol);
  color: var(--color);
  font-size: 1rem;
  border-radius: 26px;
}

#modal a{
	text-decoration: none;
	color: var(--bgcol);
}

#loadcon{
	display: flex;
	justify-content: center;
	display: none;
	width: 20rem;
	margin: auto;
	background: #eee;
	padding: 1rem;
	border-radius: 1rem;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: fixed;
	width: 100%;
	bottom: 0;
	top: 0;
	height: 100vh;
}

#logo{
  font-size: 2rem;
  color: var(--bgcol);
}

#modal progress{
	display: block;
}

#no-cds{
  text-align: center;
  font-size: 1.5rem;
  padding: 1rem;
}

#no-cds-logo{
  font-size: 4rem;
  color: var(--bgcol);
}

#addcdown{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  font-size: 1.75rem;
  justify-content: center;
  align-items: center;
  line-height: 0;
  background: var(--bgcol);
  color: var(--color);
  border: none;
  position: fixed;
  bottom: 40px;
  right: 30px;
}

#count_down_list ul{
  list-style: none;
}

#count_down_list li{
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 10px auto;
  height: 50px;
}

#count_down_list .cd{
  padding: 6px;
  padding-left: 12px;
  border-radius: 6px;
  border: 1px solid;
  width: 100%;
  position: relative;
  text-align: left;
  background: var(--bgcol);
  color: var(--color);
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center; 
}

@media (min-width: 600px) {
	#modal-bg{
		padding-top: 50px;
		position: fixed;
	}
}