html{
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
  background-color: #f3f3f3;
}

header {
  color: white;
  background-color: #0f463c;
  clear: left;
  margin-bottom: 1%;
  text-align: center;
  background-image: radial-gradient(rgba(15, 70, 60, 0.6), rgba(15, 70, 60, 1)), url('../img/home-image.jpg'); 
  border-bottom-left-radius: 50%; 
  border-bottom-right-radius: 50%;
  padding-bottom: 4%;
}

footer {
  height: 30px;
  padding: 2px 8px;
  background-color: #0f463c;
  color: white;
  text-align: center;
  font-size: 15px;
}

::placeholder {
  color: #AAAAAA;
  opacity: 1; /* Firefox */
}

header h2 {
  font-size: 2vw;
}

.container h2 {
  padding-top: 1%;
}

input[type=text], input[type=date] {
  width: 75%;
  outline: none;
  padding: 4%;
  border: 1px solid #ccc;
  resize: vertical;
  border-radius: 60px;
  margin: auto;
  font-family: 'Poppins', sans-serif;
}

.filter-row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.table-row {
    font-size: small;
    overflow-wrap: break-word;
}

input.filter {
  width: 75%;
  outline: none;
  padding: 0.7em;
  border: 1px solid #ccc;
  resize: vertical;
  border-radius: 18px;
  margin: auto;
  font-family: 'Poppins', sans-serif;
}

input[type=submit] {
  width: 25%;
  outline: none;
  padding: 1%;
  border: 1px solid #ccc;
  resize: vertical;
  border-radius: 60px;
  background-color: #0f463c;
  color: #ffffff;
  font-size: 120%;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-33 {
  float: left;
  width: 33%;
  margin-top: 6px;
  text-align: center;
}

.col-40 {
  float: left;
  width: 40%;
  margin-top: 6px;
}

.col-50 {
  float: left;
  width: 50%;
  margin-top: 6px;
}

.col-60 {
  float: left;
  width: 60%;
  margin-top: 6px;
}

.container {
  border-radius: 50px;
  background-color: white;
  padding: 3%;
  margin-right: 7%;
  margin-left: 7%;
  height: auto;
}

.flashes {
  text-align: center;
  color : red;
  font-size: 1.2vw;
}

/* header button{
  background: none;
  outline: none;
  border-radius: none;
  border: white 2px solid;
  text-transform: uppercase;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 1.1vw;
  font-family: 'Poppins', sans-serif;
}

header .btn-group button div i {
  color: inherit!important;
}

.btn-group button {
  background-color: #0f463c;
  border: 2px solid white;
  color: white;
  padding: 5px 20px;
  cursor: pointer;
  width: 25%;
  float: right;
  margin-top: 20px;
}

.btn-group button:not(:first-child) {
  border-right: none;
}

.btn-group:after {
  content: "";
  clear: both;
  display: table;
}

.btn-group button:hover {
  background-color: #AAAAAA;
}

.btn-group :last-child {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

.btn-group :first-child {
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
} */

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.submit {
  margin-top: 3%;
  width: 20%;
  cursor: pointer;
}

.submit:hover {
  background-color: #AAAAAA;
}

table, th, td {
  border-bottom: 1px solid black;
  border-collapse: collapse;
}

table {
  width: 70%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3%;
}
th {
  background-color: #0f463c;
  color: white;
}

table#t1 {
  width: 90%;
}

a.button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  text-align: center;
  color: black;
  padding: 10px;
  border-radius: 5%;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  font-size: 50px;
  text-decoration: none;
  color: initial;
}

input[type=button] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  background: #0f463c;
  text-align: center;
  color: white;
  padding: 4px;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  text-decoration: none;
}

div#loading {
  display: none;
  margin-top: 150px;
  margin-bottom: 150px;
  border: 8px solid #f3f3f3;
  border-top: 8px solid #0f463c;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  -webkit-animation: spin 2s linear infinite;
  cursor: wait;
  }

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Loading button */

.loader {
  display: none;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.loading {
  border: 2px solid #ccc;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border-top-color: #1ecd97;
  border-left-color: #1ecd97;
  animation: spin 1s infinite ease-in;
}
