:root {
  font-family: 'Montserrat';
}

html {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

body {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(img/bg.jpg);
  background-size: cover;
  background-position: center;
}


.wrapper {
  padding: 20px;
  width: 70%;
  box-shadow: 0 0 0 10px rgba(0,0,0,0.1);
  background: -webkit-linear-gradient(left, #381460DD, #b21f66DD);
  background: linear-gradient(to right, #381460DD, #b21f66DD);
  border-radius: 2rem;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + label {
  font-size: 1.5rem;
  margin-right: 10px;
}

.add-items {
  display: flex;
  flex-direction: row;
}

.add-items input {
  font-family: 'Montserrat';
  background: rgba(255,255,255,0.5);
  flex: 1;
  min-width: 50px;
  margin: 1rem;
  padding: 10px;
  outline: 0;
  box-shadow: 0 0 0 10px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.1);
}

.add-items input:focus {
  background: rgba(255,255,255,0.5);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.5);
  color: white;
  background: rgba(255,255,255,0);

}

.add-items input[type="submit"] {
  text-align: center;
  background: rgba(255,255,255,0.5);
  padding: 0.5rem;
  text-decoration: none;
  color: white;
}

.add-items input[type="submit"]:hover {
  background: rgba(255,255,255,0);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.5);
  color: rgb(255, 255, 255, 0.5);
}

h1{
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  text-align: center;
  margin-bottom: 15px;
}

table{
  width:100%;
  table-layout: fixed;
}

.tbl-header{
  background-color: rgba(255,255,255,0.3);
 }

.tbl-content{
  height:300px;
  overflow-x:auto;
  margin-top: 0px;
  border: 1px solid rgba(255,255,255,0.3);
}

th{
  padding: 20px 15px;
  text-align: left;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
}

td{
  padding: 15px;
  text-align: left;
  vertical-align:middle;
  font-weight: 300;
  color: #fff;
  border-bottom: solid 1px rgba(255,255,255,0.1);
}

.hyperlink {
  display: block;
  text-align: center;
  background: rgba(255,255,255,0.3);
  padding: 0.5rem;
  border: solid 2px white;
  text-decoration: none;
  color: white;
}

.hyperlink:hover {
  background: rgba(255,255,255,0);
  border: solid 2px rgb(202, 202, 202);
  color: rgb(202, 202, 202);
}

/* for custom scrollbar for webkit browser*/

::-webkit-scrollbar {
    width: 6px;
} 
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
} 
::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
}
