/* styles.css */
*, ::before, ::after {
  box-sizing: border-box;
}

body {
  font-family: Lato, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f4f4f4;
}

.site-branding {
  width: 80vw;
  margin: auto;
}
.site-branding img {
  margin: 0 auto 2em;
  display: block;
}

h1, h2, h3 {
  text-align: center;
}

h3 {
  font-weight: normal;
}

a {
  color: #0064a2;
  text-decoration: none;
}

ul {
  list-style-type: none;
}

li {
  position: relative;
  padding-left: 12px;
  padding-bottom: 6px;
}
li:first-of-type {
  margin-top: 6px;
}

li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  color: #0064a2;
}

div.spacer {
  display: block;
  height: 2em;
  width: auto;
}

.page-content .page-title {
  margin-top: 2em;
  font-size: 24px;
}
.page-content .form-section {
  display: flex;
  justify-content: center;
}

.head_picture {
  display: block;
  margin: auto;
  width: 100%;
  max-width: 960px;
}

form {
  box-sizing: border-box;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 90vw;
  min-width: 300px;
}
@media all and (min-width: 980px) {
  form {
    width: 50vw;
  }
}

label {
  display: block;
  margin-bottom: 5px;
}
label.agreements {
  font-size: 0.9em;
  padding-left: 2em;
  cursor: pointer;
}
label.agreements:first-of-type {
  margin-top: 2em;
}

input, textarea, select {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

input[type=checkbox] {
  width: auto;
  margin-left: -2em;
  margin-bottom: auto;
  margin-right: 8px;
}

.star {
  color: red;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #f4f4f4;
  color: #000000;
  margin: 1em 0;
  font-size: 0.75em;
}
table th, table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}
table th {
  background-color: #f4f4f4;
}
table tr:hover {
  background-color: #575757;
}
table tr:hover td {
  color: #fff;
}

button {
  display: block;
  text-align: center;
  vertical-align: middle;
  min-width: 120px;
  padding: 1em 2em;
  margin: 2em auto;
  text-decoration: none;
  background-color: #0064a2;
  color: #fff;
  border: 1px solid transparent;
  cursor: pointer;
}

button:hover {
  background-color: #fff;
  color: #0064a2;
  border: 1px solid #0064a2;
}

/* uczestnicy */
fieldset.agreements {
  border: none;
  padding: 0 1.8em;
}

.remove-participant {
  display: none;
  background-color: #d9534f;
  color: white;
  border: 1px solid #d9534f;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.remove-participant:hover {
  background-color: white;
  color: #c9302c;
  border: 1px solid #c9302c;
}

#costSummary h3 {
  font-weight: 700;
}
#costSummary p {
  text-align: center;
}

.site-footer {
  margin: 1em 0 0;
}

.footer-info {
  padding-top: 2.25rem;
  font-size: 0.875rem;
  width: 80vw;
  margin: auto;
}
.footer-info .footer-info-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: #727272;
}
.footer-info .footer-info-content span {
  width: 100%;
  text-align: center;
  margin-bottom: 1em;
}

.message-container {
  background: #fff;
  padding: 5em;
}
.message-container .send-info {
  text-align: center;
}
.message-container a {
  text-align: center;
  display: block;
}

@media screen and (min-width: 60rem) {
  .page-content .page-title {
    font-size: 2em;
  }
  table {
    font-size: 0.9em;
  }
  .footer-info .footer-info-content {
    flex-direction: row;
    align-items: flex-start;
  }
  .footer-info .footer-info-content span {
    width: 33%;
  }
  .footer-info .footer-info-content span.copyright-left {
    text-align: left;
  }
  .footer-info .footer-info-content span.copyright-center {
    text-align: center;
  }
  .footer-info .footer-info-content span.copyright-right {
    text-align: right;
  }
}

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