@charset "UTF-8";
/*
TODO: space between map and input fields
TODO: weird ékezet in input fields
*/
/*
TODO: this should only have global variables... make input stuff to its ows scss...
*/
.required::after {
  content: "*";
  color: #ff5a5a;
}

header > nav > a {
  text-decoration: none;
}

img {
  width: 30px;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.email-container {
  width: 500px;
}

input, textarea {
  display: block;
  width: 100%;
  height: 50px;
  border: none;
  padding-left: 25px;
  margin-bottom: 25px;
  outline: 0;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);
  font-size: 19px;
}

textarea {
  height: 135px;
  resize: none;
  padding-top: 15px;
}

input[type=submit] {
  background-color: #B5C0D0;
  text-transform: uppercase;
  border: 1px solid #B5C0D0;
  border-radius: 0;
  font-weight: bold;
  width: 150px;
  padding: 0;
  cursor: pointer;
}

.map-container {
  width: 500px;
}
.map-container iframe {
  width: 100%;
  height: 360px;
}

.contact-parent-container {
  display: flex;
}

.contact-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 50%;
  align-items: center;
}

.card {
  margin: 15px;
  width: 180px;
  height: 180px;
  background-color: white;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
.card * {
  height: auto;
}

table {
  border-collapse: collapse;
  margin: 0px auto;
  border-radius: 10px;
  width: 50%;
  background-color: white;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  font-size: 21px;
}

tr {
  transition: all 0.3s ease-out;
}

tbody > tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

tbody > tr > :first-child {
  font-weight: bold;
  text-transform: uppercase;
}

table, td, th {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid rgba(0, 0, 0, 0.075);
}

thead {
  text-align: left;
}

h1 {
  background-color: #B5C0D0;
  border-radius: 50px;
  margin-top: 60px;
  text-align: center;
}

.card a:hover {
  text-decoration: underline;
  color: #317be7;
}

#closed {
  color: #ff5a5a;
  font-weight: bold;
}

.cardname {
  margin-top: 15px;
  margin-bottom: 15px;
}

#email {
  font-size: 15px;
}/*# sourceMappingURL=contact.css.map */