* {
  font-family: sans-serif;
  color: #333;
}

html {
  transition: 300ms ease;
  background: rgba(221, 153, 51, 0.1);
  min-width: 906px;
  width: 100vw;


}

@media screen and (max-width: 905px) {
  html {
    display: flex;
    width: 100vw;
    min-width: unset;
    max-width: 100vw;
    height: 100vh;
  }
  #banner {
    display: none;
  }
  #navigation, main #new-event-container {
    max-width: 100vw;
  }
}


::selection {
  background: #dd9933;
  color: #fff;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

header {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: clamp(10px, 5vh, 60px);
}
header #banner img {
  width: 100%;
  height: 100%;
  display: flex;

}
header #navigation {
  display: flex;
  flex-direction: row-reverse;
  padding: 0 20px;
  justify-content: space-around;
  align-items: center;
  background: #f3dbb6;
}
header #navigation a {
  text-decoration: none;
}
header #navigation .logo {
  display: flex;
  align-items: center;
}
header #navigation .logo:hover {
  cursor: pointer;
}
header #navigation .logo img {
  max-width: 80px;
  height: auto;
}
header #navigation .logo .header-text {
  font-size: 1.1rem;
  color: #333;
  max-width: 100%;
}
header nav ul {
  display: flex;
}
#main-nav{
  padding: 0;
}
header nav ul li {
  list-style: none;
  padding: 15px;
  transition: all 300ms ease 0s;
  display: flex;
}
header nav ul li#new-event-link {
  padding: 0 !important;
}
header nav ul li a {
  text-decoration: none;
  color: #333;
  padding: 15px;
}
header nav ul li.danger {
  color: red;
}
header nav ul li.danger:hover {
  background: red;
  color: #fff;
  cursor: pointer;
}
header nav ul li:hover {
  color: #fff;
  background: #dd9933;
  transition: all 150ms ease 0s;
  border-radius: 10px;
  cursor: pointer;
}
header nav ul li:hover a {
  color: #fff;
}

header nav ul li:active {
  box-shadow: 2px 2px 8px 0 black inset;
}

.message {
  margin: 15px 0;
  padding: 15px;
  font-weight: bold;
}
.message.error {
  border-radius: 50px;
  box-shadow: 4px 4px 8px 0 rgba(192,0, 0, 0.4);
  background: rgb(192, 0, 0);
  color: #fff;
}
.message.success {
  box-shadow: 4px 4px 8px 0 rgba(2, 128, 4, 0.2) inset;
  border-radius: 50px;
  background: #028004;
  color: #fff;
}

main {
  background: #fff;
  width: 80%;
}

main .edit-button {
  width: 100%;
  height: 100%;
  padding: 5px;
  color: #dd9933;
  background: rgba(221, 153, 51, 0.01);
  border: 1px solid #dd9933;
  border-radius: 5px;
  font-weight: bold;
  font-size: medium;

  transition: all 300ms ease 0s;
}
main .edit-button:hover {
  cursor: pointer;
  background: #dd9933;
  box-shadow: 1px 1px 4px black;
  color: #fff;
}
main .edit-button:active {
  box-shadow: 1px 1px 3px 0 black inset;
  transition: all 150ms ease 0s;
}
main.event-loaded.event-admin #edit-event-notes-button{
  border-radius: 50px;
}

main.new-event-body {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background: transparent;
  max-width: 700px;
}
main.new-event-body #new-event-container {
  max-width: 1050px;
  min-width: 600px;
  background: rgba(221, 153, 51, 0.4);
  border-radius: 20px;
  box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.5);
  padding: 30px;
}
main.new-event-body #new-event-container form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
main.new-event-body #new-event-container form fieldset {
  width: 90%;
  margin: 1%;
  border-radius: 10px;
  border: 0.15em solid hsl(36, 100%, 60%);
  box-shadow: 2px 2px 1px 0 rgba(221, 153, 51, 1);

}
main.new-event-body #new-event-container form fieldset legend {
  padding: 3px;
  border-radius: inherit;
  border: 0.1em solid hsl(36, 100%, 60%);
  box-shadow: 2px 2px 1px 0 rgba(221, 153, 51, 1);
  background: #dd9933;
  font-weight: bolder;
  font-size: medium;
  color: #fff;

}
main.new-event-body #new-event-container form p {
  display: flex;
  width: 100%;
  justify-content: center;
}
main.new-event-body #new-event-container form p label {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main.new-event-body #new-event-container form p input {
  font-size: 20px;
  width: 70%;
  line-height: 1;
}
main.new-event-body #new-event-container form p input[type=checkbox] {
  width: 30px;
  height: 30px;
}
main.new-event-body #new-event-container form p input[type=checkbox]:hover {
  cursor: pointer;
}
main.new-event-body #new-event-container form p input#new-event-submit {
  width: 50%;
  font-size: 20px;
  line-height: 3;
  color: #fff;
  background: #dd9933;
  border-radius: 50px;
  border: none;
}
main.new-event-body #new-event-container form p input#new-event-submit:hover {
  cursor: pointer;
  background: #bd7e20;
}
main.new-event-body #new-event-container form p input#new-event-submit:active {
box-shadow: 4px 4px 8px 0 black inset;
}

main.event-loaded {
  margin: clamp(5px, 1vh, 15px) clamp(5px, 5vw, 130);
  padding: 20px;
  background: rgba(221, 153, 51, 0.1);
  border: 1px solid #333;
  border-radius: 30px;
}
main.event-loaded .event-auth {
  display: none;
}
main.event-loaded p.info-name {
  font-weight: bold;
  margin-right: 30px;
}
main.event-loaded #admin-event-header {
  display: flex;
  justify-content: space-between;
}
main.event-loaded .event-info {
  max-width: 450px;
}
main.event-loaded .event-info div {
  display: flex;
  justify-content: space-between;
}
main.event-loaded .event-info div p.info-name {
  font-weight: bold;
  margin-right: 30px;
}
main.event-loaded.event-admin .material-list-hint {
  font-style: italic;
}
main.event-loaded.event-admin .event-info div p input {
  width: 7.5vw;
  min-width: 100px;
  min-height: 25px;
  height: 3vh;

}
main.event-loaded.event-admin #logout-form {
  margin-top: 15px;
}
main.event-loaded.event-admin #logout-form input[type=submit] {
  color: #dd9933;
  font-size: large;
  font-weight: bold;
  border-radius: 30px;
  border: thin solid #dd9933;
  background: rgba(221, 153, 51, 0.1);
  min-height: 33px;
  min-width: 100px;
  height: 4vh;
  width: 10vw;

}
main.event-loaded.event-admin #logout-form input[type=submit]:hover {
  text-decoration: underline;
  box-shadow: 2px 2px 4px 0 rgba(110, 76, 26, 0.5);
  background: rgba(255, 51, 51, 0.2);
  cursor: pointer;
  color: rgba(255, 0, 0, 1);
}
main.event-loaded.event-admin #logout-form input[type=submit]:active {
  text-decoration: underline;
  box-shadow: 4px 4px 6px 0 rgba(110, 76, 26, 0.5) inset;
  background: rgba(255, 51, 51, 0.5);
  cursor: pointer;
  color: rgba(240, 240, 240, 1);
}

/* Modals */
.event-link {
  display: none;
}
.event-link .ui-dialog-titlebar-close {
  visibility: hidden;
}

.event-link p {
  display: flex;
  flex-direction: column;
  height: 80%;
  justify-content: space-evenly;
  align-items: center;
}
.event-link p input[type=button] {
  max-width: 100px;
  padding: 15px;
  background: #fff;
  border: 1px solid #dd9933;
  border-radius: 5px;
  color: #dd9933;
  transition: all 300ms ease 0s;
}
.event-link p input[type=button]:hover {
  cursor: pointer;
  background: #dd9933;
  color: #fff;
}
.event-link p input[type=button]:active, .event-link p input[type=button]:focus {
  border: 1px solid #dd9933;
}
.event-link p #event-link, .event-link p #event-id {
  width: 100%;
}

.open-event {
  display: none;
}

#add-event-material-modal,
#add-custom-event-material-modal {
  display: none;
}
#add-event-material-modal form,
#add-custom-event-material-modal form {
  width: 100%;
  height: 100%;
}
#add-event-material-modal form p, #add-event-material-modal form textarea,
#add-custom-event-material-modal form p,
#add-custom-event-material-modal form textarea {
  width: 100%;
  height: 100%;
}
#add-event-material-modal form input, #add-event-material-modal form textarea,
#add-custom-event-material-modal form input,
#add-custom-event-material-modal form textarea {
  font-size: 18px;
  line-height: 1;
}

#edit-event-name-modal {
  display: none;
}

#edit-event-date-modal {
  display: none;
}

#edit-event-location-modal {
  display: none;
}

#edit-event-notes-modal {
  display: none;
}

#member-material-list-modal {
  display: none;
}

#delete-event-modal {
  display: none;
}

.material-edit-modal {
  display: none;
}

.member-material-modal {
  display: none;
}
.member-material-modal p.regular-input label {
  display: flex;
  flex-direction: column;
}

#add-custom-event-material-modal p.regular-input label {
  display: flex;
  flex-direction: column;
}

Button .deleteIcon {
  justify-content: center;
  align-items: center;
  fill-rule: evenodd;
  fill: #b30000;
  width: 32px;
  height:40px;
}

.deleteIconButton {
  fill: orange;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 40px;
}

button .deleteIcon:Hover {
  justify-content: center;
  align-items: center;
  fill: red;
  fill-rule: evenodd;
  width: 32px;
  height:40px;
}

.total-amount {
  font-size: 14px;
}
.total-amount.red {
  color: #AF0000;
  font-weight: bold;
  font-size: small;
}
.total-amount.yellow {
  color: darkorange;
  font-weight: bold;
  font-size: small;
}
.total-amount.green {
  color: #028004;
  font-weight: bold;
  font-size: small;
}

table {
  width: 100%;
  border-radius: 20px;
  border-collapse: collapse;
  box-shadow: 5px 5px 3px 0 rgba(221, 153, 51, 1),
             -4px -2px 2px 0 rgba(221, 153, 51, 1);

}
table thead {
  background: rgba(221, 153, 51, 0.5);
}
table thead th:first-child {
  border-top-left-radius: 20px;
}
table thead th:last-child {
  border-top-right-radius: 20px;
}
table tbody tr:not(tr:last-child) {
  border-top: 3px solid rgba(221, 153, 51, 1);
  border-bottom: 3px solid rgba(221, 153, 51, 1);
  border-collapse: collapse;
}
table td:not(td:first-child), table th:not(th:first-child) {
  border-left: 3px solid rgba(221, 153, 51, 1);
}
table td:not(td:last-child), table th:not(th:last-child) {
  border-right: 3px solid rgba(221, 153, 51, 1);
}
table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 20px;
}
table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 20px;
}

table th, table td {
  padding: 10px;
}

.event-material-list-buttons {
  display: flex;
  margin-top: 10px;
  justify-content: space-around;
}

.event-material-list-buttons p {
  text-align: center;
  transition: all 300ms ease 0s;
  width: 45%;
  border: 1px solid #dd9933;
  border-radius: 5px;
  padding: 10px;
  color: #dd9933;
}

.event-material-list-buttons p:hover {
  cursor: pointer;
  background: #dd9933;
  box-shadow: 1px 1px 4px black;
  color: #fff;
}
.event-material-list-buttons p:active {
  box-shadow: 2px 2px 4px 0 black inset;
}

#password-box {
  margin: 15px 130px;
  padding: 0 25px 25px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: 1px solid #333;
  max-width: 600px;
  border-radius: 5px;
}
#password-box .event-password {
  background: yellow;
  border: 4px dotted darkorange;
  color: saddlebrown;
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
}

#add-custom-event-material-cell {
  text-align: center;
}

.custom-material td {
  background: rgba(221, 153, 51, 0.1);
}

.verify {
  display: flex;
  place-items: center;
  justify-content: center;
}
.verify div {
  display: flex;
  flex-direction: column;
  place-items: center;
}
.verify div p {
  max-width: 800px;
  text-align: center;
  color: #555;
}
.verify div.verify-success h1 {
  color: #dd9933;
}
.verify div.verify-fail h1 {
  color: #c00;
}
footer {
  margin-top: clamp(50px, 5vh, 75px);
  display: flex;
  height: 5vh;
  background: #f3dbb6;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.link-container {

  display: flex;
  height: 5vh;
  background: #f3dbb6;
  width: 100%;
  align-items: center;
  justify-content: center;
}
footer a {
  margin: 0 20px;
}
footer a:hover {
  color: #028004;
  font-weight: bold;
}

.modal p.submit-para {
  display: flex;
  justify-content: flex-end;
}

/*# sourceMappingURL=style.css.map */
