* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 24px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.hoofding-groep {
  margin: 0 auto;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .hoofding-groep {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .hoofding-groep {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1100px) {
  .hoofding-groep {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    margin-top: 10px;
  }
}

.klok {
  border: 2px solid black;
  border-radius: 20px;
  background: rgba(153, 160, 95, 0.3019607843);
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .klok {
    grid-column: 1/2;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    width: 80%;
    height: 25px;
    text-align: center;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .klok {
    grid-column: 1/2;
    height: 35px;
    padding-left: 6px;
    padding-right: 6px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    text-align: center;
  }
}
@media only screen and (min-width: 1100px) {
  .klok {
    grid-column: 1/2;
    grid-row: 1/2;
    padding: 20px;
    height: 60px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
  }
}

.klok p {
  font-family: comic sans ms;
  font-style: italic;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .klok p {
    font-size: 50%;
    padding-left: 3px;
    padding-right: 3px;
    margin-top: 3px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .klok p {
    font-size: 70%;
    padding-left: 7px;
    padding-right: 7px;
    margin-top: 7px;
  }
}
@media only screen and (min-width: 1100px) {
  .klok p {
    font-size: 80%;
    text-align: center;
  }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
  .logo {
    grid-column: 2/3;
    grid-row: 1/3;
    margin-top: 20px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .logo {
    grid-column: 2/3;
    grid-row: 1/3;
    margin-top: 40px;
  }
}
@media only screen and (min-width: 1100px) {
  .logo {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .logo img {
    width: 100px;
    height: 100px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .logo img {
    width: 150px;
    height: 150px;
    margin-left: 80px;
  }
}
@media only screen and (min-width: 1100px) {
  .logo img {
    width: 200px;
    height: 200px;
    margin-left: 150px;
  }
}

.socialmedia {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .socialmedia {
    grid-column: 1/2;
    grid-row: 2/2;
    margin-top: 10px;
    width: 90%;
    height: 25px;
    text-align: center;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .socialmedia {
    grid-column: 1/2;
    grid-row: 2/2;
    height: 35px;
    padding-left: 6px;
    padding-right: 6px;
    margin-top: 30px;
    text-align: center;
  }
}
@media only screen and (min-width: 1100px) {
  .socialmedia {
    grid-column: 1/2;
    grid-row: 1/2;
    padding: 20px;
    height: 90px;
    margin-top: 60px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .fab {
    font-size: 150%;
  }
}
@media only screen and (min-width: 1100px) {
  .fab {
    font-size: 150%;
  }
}

@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .fas {
    font-size: 150%;
  }
}
@media only screen and (min-width: 1100px) {
  .fas {
    font-size: 150%;
  }
}

.fa-facebook {
  color: blue;
}

.fa-instagram {
  color: red;
}

.fa-envelope-square {
  color: black;
}

.contact-data {
  font-family: Lucida Handwriting;
  font-style: italic;
  font-weight: bold;
  /*.userinfo {
    font-style: italic;
    background: #99a05f4d;
    padding: 6px;
    border: 1px solid black;
    border-radius: 20px;
    grid-column: 1/2;
    grid-row: 2/3;

    @include bp-phone {
      grid-column: 1/2;
    }
    @include bp-tablet {
      grid-column: 8/12;
    }
    @include bp-desktop {
      grid-column: 7/10;
    }
  }*/
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .contact-data {
    grid-column: 3/-1;
    grid-row: 1/2;
    margin-top: 20px;
    margin-left: -25px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .contact-data {
    grid-column: 3/-1;
    grid-row: 1/2;
    margin-top: 20px;
    padding-top: 20px;
  }
}
@media only screen and (min-width: 1100px) {
  .contact-data {
    grid-column: 3/-1;
    grid-row: 1/2;
    width: 80%;
    margin-right: -300px;
    text-align: center;
  }
}
.contact-data #hoofding {
  color: red;
  text-shadow: 2px 2px 5px yellow;
  text-align: center;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .contact-data #hoofding {
    margin-right: 70px;
    font-size: 90%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .contact-data #hoofding {
    font-size: 150%;
  }
}
@media only screen and (min-width: 1100px) {
  .contact-data #hoofding {
    font-size: 250%;
  }
}
.contact-data #adres {
  color: black;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .contact-data #adres {
    display: inline-block;
    font-size: 75%;
    margin-left: 10px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .contact-data #adres {
    font-size: 100%;
  }
}
@media only screen and (min-width: 1100px) {
  .contact-data #adres {
    font-size: 190%;
  }
}

.site-nav {
  font-style: italic;
  width: 100%;
  display: flex;
  flex-direction: row;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .site-nav {
    margin-left: 20px;
    margin-top: 5px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .site-nav {
    margin-left: 40px;
    margin-bottom: 50px;
    margin-top: 20px;
  }
}
@media only screen and (min-width: 1100px) {
  .site-nav {
    margin-left: 120px;
    margin-bottom: 80px;
    margin-top: 30px;
  }
}
.site-nav li {
  list-style: none;
  float: left;
  background-color: #ecefee;
  margin-right: 15px;
  margin-bottom: 20px;
  box-shadow: 2px 2px 5px black;
}
@media only screen and (min-width: 1100px) {
  .site-nav li {
    margin-right: 25px;
  }
}
.site-nav li:hover {
  transform: scale(0.9);
  box-shadow: none;
}
.site-nav ul {
  clear: left;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  display: block;
  color: #686968;
  text-decoration: none;
  font-weight: bold;
  border: 3px solid #a5ad95;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .site-nav a {
    font-size: 65%;
    padding: 5px 5px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .site-nav a {
    font-size: 80%;
    padding: 10px 10px;
  }
}
@media only screen and (min-width: 1100px) {
  .site-nav a {
    font-size: 100%;
    padding: 20px 20px;
  }
}

.footer {
  background: #00c0c0;
  color: black;
  text-shadow: 2px 2px 3px #d7cdcd;
  font-style: italic;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid black;
  border-radius: 10px;
  box-shadow: 2px 2px 2px gray;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .footer {
    width: 85%;
    font-size: 75%;
    padding: 3px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .footer {
    width: 70%;
    font-size: 90%;
    margin-top: 50px;
    padding: 10px;
    margin-top: 30px;
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 1100px) {
  .footer {
    width: 60%;
    font-size: 120%;
    margin-top: 100px;
    padding: 15px;
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.back-btn {
  color: red;
  background-color: #ecefee;
  font-weight: bold;
  border: 3px solid #a5ad95;
  box-shadow: 2px 2px 5px black;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .back-btn {
    font-size: 45%;
    width: 80px;
    height: 30px;
    margin-top: 10px;
    margin-left: 15px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .back-btn {
    font-size: 75%;
    width: 120px;
    height: 45px;
    margin-top: 30px;
    margin-left: 20px;
  }
}
@media only screen and (min-width: 1100px) {
  .back-btn {
    margin-top: 50px;
    margin-left: 80px;
    font-size: 100%;
    width: 150px;
    height: 45px;
    margin-top: 40px;
  }
}

.userinfo {
  font-style: italic;
  font-family: Comic sans ms;
  text-align: center;
  border: 1px solid black;
  border-radius: 20px;
  background: rgba(219, 223, 186, 0.3019607843);
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .userinfo {
    font-size: 50%;
    padding: 2px;
    width: 165px;
    margin-bottom: 25px;
    margin-left: 20px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .userinfo {
    font-size: 75%;
    padding: 10px;
    width: 220px;
    margin-bottom: 40px;
    margin-left: 40px;
  }
}
@media only screen and (min-width: 1100px) {
  .userinfo {
    font-size: 90%;
    width: 400px;
    padding: 15px;
    margin-left: 120px;
    margin-bottom: 50px;
    margin-top: -130px;
  }
}

.connectedinfo {
  font-style: italic;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .connectedinfo {
    font-size: 50%;
    padding-top: 20px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .connectedinfo {
    font-size: 80%;
    padding-top: 30px;
  }
}
@media only screen and (min-width: 1100px) {
  .connectedinfo {
    font-size: 100%;
    padding-top: 50px;
  }
}

.members-signup,
.members-login {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .members-signup,
  .members-login {
    width: 80%;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .members-signup,
  .members-login {
    width: 70%;
    margin-top: 50px;
  }
}
@media only screen and (min-width: 1100px) {
  .members-signup,
  .members-login {
    width: 45%;
    margin-top: 30px;
  }
}
.members-signup p,
.members-login p {
  font-style: italic;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .members-signup p,
  .members-login p {
    font-size: 60%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .members-signup p,
  .members-login p {
    font-size: 75%;
  }
}
@media only screen and (min-width: 1100px) {
  .members-signup p,
  .members-login p {
    font-size: 100%;
  }
}
.members-signup .wrapper,
.members-login .wrapper {
  border: 3px solid black;
  box-shadow: 2px 2px 5px gray;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .members-signup .wrapper,
  .members-login .wrapper {
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .members-signup .wrapper,
  .members-login .wrapper {
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 1100px) {
  .members-signup .wrapper,
  .members-login .wrapper {
    padding-bottom: 50px;
  }
}

.ecurie-btn {
  color: #686968;
  background-color: #ecefee;
  font-weight: bold;
  border: 3px solid #a5ad95;
  box-shadow: 2px 2px 5px black;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .ecurie-btn {
    font-size: 70%;
    width: 80px;
    height: 30px;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .ecurie-btn {
    font-size: 85%;
    width: 120px;
    height: 45px;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 1100px) {
  .ecurie-btn {
    font-size: 100%;
    width: 150px;
    height: 45px;
    margin-top: 40px;
  }
}

.ecurie-btn :hover {
  transform: scale(0.9);
  box-shadow: none;
}

.signup-form {
  margin-left: auto;
  margin-right: auto;
  border: 2px solid black;
  box-shadow: 3px 3px 6px gray;
  text-align: center;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .signup-form {
    margin-top: 25px;
    width: 75%;
    padding-top: 15px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .signup-form {
    margin-top: 40px;
    width: 75%;
    padding-top: 25px;
  }
}
@media only screen and (min-width: 1100px) {
  .signup-form {
    margin-top: 80px;
    width: 50%;
    padding-top: 45px;
  }
}
.signup-form input {
  font-style: italic;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .signup-form input {
    font-size: 65%;
    width: 75%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .signup-form input {
    font-size: 85%;
    width: 75%;
  }
}
@media only screen and (min-width: 1100px) {
  .signup-form input {
    margin-top: 40px;
    font-size: 100%;
    width: 65%;
  }
}
.signup-form span {
  color: red;
  font-weight: bold;
  vertical-align: sub;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .signup-form span {
    font-size: 100%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .signup-form span {
    font-size: 120%;
  }
}
@media only screen and (min-width: 1100px) {
  .signup-form span {
    font-size: 140%;
  }
}
.signup-form a {
  display: block;
  font-style: italic;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .signup-form a {
    font-size: 40%;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .signup-form a {
    font-size: 60%;
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 1100px) {
  .signup-form a {
    font-size: 80%;
    margin-bottom: 100px;
  }
}
.signup-form .error {
  display: block;
  font-style: italic;
  color: red;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .signup-form .error {
    width: 80%;
    font-size: 45%;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .signup-form .error {
    width: 65%;
    font-size: 60%;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1100px) {
  .signup-form .error {
    width: 50%;
    font-size: 80%;
    margin-bottom: 40px;
  }
}
.signup-form p {
  color: blue;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .signup-form p {
    width: 80%;
    font-size: 45%;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .signup-form p {
    font-size: 65%;
  }
}
@media only screen and (min-width: 1100px) {
  .signup-form p {
    font-size: 90%;
  }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
  #forgot {
    font-size: 75%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  #forgot {
    font-size: 85%;
  }
}
@media only screen and (min-width: 1100px) {
  #forgot {
    font-size: 100%;
  }
}

.btn-submit {
  color: #686968;
  background-color: #ecefee;
  font-weight: bold;
  border: 3px solid #a5ad95;
  box-shadow: 2px 2px 5px black;
  font-style: italic;
  font-weight: bold;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .btn-submit {
    font-size: 60%;
    width: 80px;
    height: 30px;
    margin-bottom: 25px;
    margin-top: 25px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .btn-submit {
    font-size: 80%;
    width: 140px;
    height: 50px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1100px) {
  .btn-submit {
    font-size: 100%;
    width: 150px;
    height: 45px;
    margin-top: 80px;
    margin-bottom: 60px;
  }
}

.btn-submit :hover {
  transform: scale(0.9);
  box-shadow: none;
}

.messages {
  color: red;
  font-weight: bold;
  font-style: italic;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .messages {
    font-size: 60%;
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .messages {
    font-size: 80%;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1100px) {
  .messages {
    font-size: 130%;
    margin-bottom: 40px;
  }
}

.user-detail-heading {
  width: 85%;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid black;
  margin-top: 50px;
}

.user-detail-wrap {
  width: 85%;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid black;
  margin-top: 30px;
  margin-bottom: 80px;
  padding: 20px;
}

.history {
  margin-right: auto;
  margin-left: auto;
  font-size: 120%;
}
.history table {
  width: 90%;
}

.contactform {
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  border: 2px solid black;
  border-radius: 10px;
  box-shadow: 5px 5px 5px black;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .contactform {
    margin-top: 35px;
    width: 80%;
    height: 460px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .contactform {
    width: 65%;
    height: 650px;
    margin-bottom: 60px;
    margin-top: 60px;
  }
}
@media only screen and (min-width: 1100px) {
  .contactform {
    width: 45%;
    margin-top: 100px;
    margin-bottom: 100px;
    height: 950px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
  .form-item {
    text-align: center;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .form-item {
    text-align: center;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 1100px) {
  .form-item {
    text-align: center;
    margin-top: 35px;
  }
}
.form-item input {
  width: 250px;
  height: 25px;
  font-size: 14px;
  font-style: italic;
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .form-item input {
    width: 375px;
    height: 35px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 1100px) {
  .form-item input {
    width: 580px;
    height: 45px;
    font-size: 18px;
  }
}

.message-area textarea {
  height: 200px;
  width: 250px;
  font-size: 14px;
  font-style: italic;
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .message-area textarea {
    height: 250px;
    width: 375px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 1100px) {
  .message-area textarea {
    height: 320px;
    width: 580px;
    font-size: 18px;
    margin-top: 30px;
  }
}

.submit {
  text-align: center;
}
.submit button {
  background-color: #ff0000;
  color: #fff;
  font-style: italic;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .submit button {
    margin-top: 20px;
    width: 150px;
    height: 35px;
    font-size: 12px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .submit button {
    margin-top: 25px;
    width: 150px;
    height: 40px;
    font-size: 15px;
  }
}
@media only screen and (min-width: 1100px) {
  .submit button {
    margin-top: 40px;
    width: 250px;
    height: 60px;
    font-size: 24px;
  }
}
.submit p {
  font-style: italic;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .submit p {
    margin-top: 10px;
    font-size: 10px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .submit p {
    margin-top: 15px;
    font-size: 12px;
  }
}
@media only screen and (min-width: 1100px) {
  .submit p {
    margin-top: 25px;
    font-size: 18px;
  }
}

.bedankt-logo {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .bedankt-logo {
    width: 45%;
    margin-top: 25px;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .bedankt-logo {
    width: 55%;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 1100px) {
  .bedankt-logo {
    margin-top: 150px;
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .bedankt-logo .img {
    width: 120px;
    height: 120px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .bedankt-logo .img {
    width: 250px;
  }
}
@media only screen and (min-width: 1100px) {
  .bedankt-logo .img {
    width: 300px;
  }
}

.bedankt {
  font-style: italic;
  font-weight: bold;
  background-color: #fff;
  border: 2px solid black;
  border-radius: 10px;
  box-shadow: 10px 10px 10px gray;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .bedankt {
    width: 75%;
    font-size: 12px;
    padding: 30px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .bedankt {
    width: 65%;
    font-size: 18px;
    padding: 50px;
  }
}
@media only screen and (min-width: 1100px) {
  .bedankt {
    width: 45%;
    font-size: 24px;
    padding: 75px;
  }
}
.bedankt button {
  background-color: #ff0000;
  color: #fff;
  font-style: italic;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .bedankt button {
    margin-top: 25px;
    width: 95px;
    height: 30px;
    font-size: 15px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .bedankt button {
    margin-top: 35px;
    width: 175px;
    height: 45px;
    font-size: 18px;
  }
}
@media only screen and (min-width: 1100px) {
  .bedankt button {
    margin-top: 55px;
    width: 220px;
    height: 65px;
    font-size: 24px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .bedankt p {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .bedankt p {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1100px) {
  .bedankt p {
    margin-bottom: 40px;
  }
}

.title {
  background: #f3f3f3;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .title {
    width: 80%;
    font-size: 45%;
    padding: 3px;
    margin-top: 15px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .title {
    width: 80%;
    font-size: 60%;
    padding: 6px;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 1100px) {
  .title {
    width: 70%;
    font-size: 100%;
    padding: 15px;
    margin-top: 60px;
  }
}

.aside-menu {
  background: #f3f3f3;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .aside-menu {
    display: none;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .aside-menu {
    display: none;
  }
}
@media only screen and (min-width: 1100px) {
  .aside-menu {
    margin-top: 60px;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
  }
}

.warning {
  margin-left: auto;
  margin-right: auto;
  background: #f3f3f3;
}
.warning p {
  text-align: center;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .warning {
    width: 80%;
    font-size: 50%;
    padding: 3px;
    margin-top: 15px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .warning {
    width: 80%;
    font-size: 65%;
    padding: 6px;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 1100px) {
  .warning {
    display: none;
  }
}

.admin-btn {
  color: #686968;
  background-color: #ecefee;
  font-weight: bold;
  border: 3px solid #a5ad95;
  box-shadow: 2px 2px 5px black;
  font-size: 100%;
  width: 180px;
  height: 80px;
  margin-bottom: 20px;
  margin-left: 10px;
}

.edit-area {
  width: 80%;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid black;
  background-color: #dfd8d8;
}
.edit-area input {
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 25px;
  margin-bottom: 25px;
  font-size: 100%;
  padding: 10px;
  border: 1px solid #a5ad95;
  box-shadow: 2px 2px 5px black;
  color: #686968;
}

.status {
  background-color: #dfd8d8;
  color: red;
  margin-top: 60px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  padding: 5px;
  font-weight: bold;
  font-style: italic;
}

.booking-wrap,
.planning-wrap,
.block-day-wrap {
  margin-top: 50px;
  width: 60%;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.planning_date_to_date {
  margin-top: 50px;
  width: 60%;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.dateheading {
  grid-column: 1/3;
}

.startdate, .enddate {
  border: 1px solid black;
  margin-top: 30px;
  padding: 30px;
}

.startdate {
  grid-column: 1/2;
}

.enddate {
  grid-column: 2/3;
}

.delete-wrap {
  margin-top: 50px;
  width: 60%;
  margin-right: auto;
  margin-left: auto;
}

.delete-message {
  background: #99e895;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.week-start,
.week-end {
  margin-left: 20px;
}

.block-week-wrap {
  margin-top: 50px;
  width: 60%;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.week-block-int {
  grid-column: 1/2;
  margin-top: 50px;
  border: 1px solid black;
}

.week-block-ext {
  grid-column: 2/-1;
  margin-top: 50px;
  border: 1px solid black;
}

.date-choice-int,
.date-choice-ext {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.week-start,
.week-end {
  grid-column: 1/2;
}

.submit-blockdate-int {
  grid-column: 2/-1;
  grid-row: 1/2;
  margin-bottom: 30px;
}

.order-input {
  border: 1px solid black;
  padding: 40px;
  margin-top: 30px;
}
.order-input .ecurie-btn {
  margin-left: 215px;
}

.interior,
.exterior,
.planning_int,
.planning_ext,
.block-day-int,
.block-day-ext {
  border: 1px solid black;
  margin-top: 30px;
}
.interior table th td,
.exterior table th td,
.planning_int table th td,
.planning_ext table th td,
.block-day-int table th td,
.block-day-ext table th td {
  border: 1px solid black;
  border-collapse: collapse;
}

.interior,
.planning_int,
.block-day-int,
.start-date {
  grid-column: 1/2;
}

.exterior,
.planning_ext,
.block-day-ext,
.end-date {
  grid-column: 2/-1;
}

.submit-area {
  text-align: center;
  margin-bottom: 25px;
}

.planninglist {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
.planninglist p {
  margin-top: 50px;
  margin-bottom: 50px;
  font-size: 120%;
  font-weight: bold;
}
.planninglist table {
  width: 100%;
  font-size: 80%;
}
.planninglist th {
  background: #e9e9e9;
  text-align: left;
  padding: 7px;
}
.planninglist td {
  padding-left: 4px;
  padding-right: 4px;
  padding-bottom: 10px;
  padding-top: 10px;
}
.planninglist td {
  border: 1px solid grey;
  border-collapse: collapse;
}
.planninglist table,
.planninglist th {
  border: 3px solid black;
  border-collapse: collapse;
}

.period-planninglist {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}
.period-planninglist p {
  margin-top: 50px;
  margin-bottom: 50px;
  font-size: 120%;
  font-weight: bold;
}
.period-planninglist table {
  width: 100%;
  font-size: 80%;
}
.period-planninglist th {
  background: #e9e9e9;
  text-align: left;
  padding: 7px;
}
.period-planninglist td {
  padding-left: 4px;
  padding-right: 4px;
  padding-bottom: 10px;
  padding-top: 10px;
}
.period-planninglist td {
  border: 1px solid grey;
  border-collapse: collapse;
}
.period-planninglist table,
.period-planninglist th {
  border: 3px solid black;
  border-collapse: collapse;
}

.printoption {
  margin-top: 50px;
}

.user-wrapper {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}

.userlist table th {
  background: #e9e9e9;
  border: 1px solid black;
  border-collapse: collapse;
}

.pdfviewer {
  border: 2px solid black;
  box-shadow: 10px 10px 10px gray;
}

.buttons {
  display: flex;
}

.more-btn {
  color: blue;
  background-color: #ecefee;
  font-weight: bold;
  border: 3px solid #a5ad95;
  box-shadow: 2px 2px 5px black;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .more-btn {
    font-size: 45%;
    width: 80px;
    height: 30px;
    margin-top: 10px;
    margin-left: 15px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .more-btn {
    font-size: 75%;
    width: 120px;
    height: 45px;
    margin-top: 30px;
    margin-left: 20px;
  }
}
@media only screen and (min-width: 1100px) {
  .more-btn {
    margin-top: 50px;
    margin-left: 80px;
    font-size: 100%;
    width: 150px;
    height: 45px;
    margin-top: 40px;
  }
}

.wrap {
  margin-right: auto;
  margin-left: auto;
  border: 1px solid black;
  box-shadow: 5px 5px 10px gray;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .wrap {
    width: 70%;
    margin-top: 40px;
    padding: 25px;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .wrap {
    width: 60%;
    margin-top: 50px;
    padding: 35px;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1100px) {
  .wrap {
    width: 50%;
    margin-top: 65px;
    padding: 50px;
  }
}

.notice {
  text-align: center;
}
.notice p {
  text-align: center;
  color: red;
  font-weight: bold;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .notice p {
    font-size: 65%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .notice p {
    font-size: 90%;
  }
}
@media only screen and (min-width: 1100px) {
  .notice p {
    font-size: 150%;
  }
}

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

.bookings-btn {
  color: #686968;
  background-color: #ecefee;
  font-weight: bold;
  border: 3px solid #a5ad95;
  box-shadow: 2px 2px 5px black;
  text-align: center;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .bookings-btn {
    height: 50px;
    width: 200px;
    font-size: 75%;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .bookings-btn {
    height: 65px;
    width: 250px;
    font-size: 85%;
    margin-top: 25px;
  }
}
@media only screen and (min-width: 1100px) {
  .bookings-btn {
    height: 80px;
    width: 300px;
    font-size: 100%;
    margin-top: 40px;
  }
}

.hoofding {
  margin-left: auto;
  margin-right: auto;
}
.hoofding p {
  text-align: center;
}
@media only screen and (min-width: 1100px) {
  .hoofding p {
    font-size: 170%;
    font-weight: bold;
  }
}

/*.cart {
  width: 85%;
  margin-right: auto;
  margin-left: auto;
  background: #e9e9e9;
  display: grid;
  grid-template-columns: repeat(12, 1fr);

  @include bp-desktop {
    margin-top: 80px;
  }

  .cart-text {
    grid-column: 1/6;

    @include bp-desktop {
      font-size: 80%;
    }
  }

  .cart-divider {
    border-right: 3px solid gray;
  }

  .shopping-cart {
    grid-column: 8/-1;

    #cart-title {
      font-size: 120%;
      margin-left: 100px;
    }
  }
}
*/
.booking-userinfo {
  font-style: italic;
  background: rgba(153, 160, 95, 0.3019607843);
  padding: 6px;
  border: 1px solid black;
}
.booking-userinfo hr {
  border-top: 2px solid black;
  margin-bottom: 20px;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .booking-userinfo {
    grid-column: 1/3;
  }
}
@media only screen and (min-width: 1100px) {
  .booking-userinfo {
    grid-column: 2/5;
    font-size: 80%;
  }
}

.product_wrapper {
  padding: 10px;
  text-align: center;
}

.product_wrapper:hover {
  box-shadow: 0 0 0 2px #e5e5e5;
  cursor: pointer;
}

.product_wrapper .name {
  font-weight: bold;
}

.product_wrapper .buy {
  text-transform: uppercase;
  background: #f68b1e;
  border: 1px solid #f68b1e;
  cursor: pointer;
  color: #fff;
  padding: 8px 40px;
  margin-top: 10px;
}

.product_wrapper .buy:hover {
  background: #f17e0a;
  border-color: #f17e0a;
}

.message_box .box {
  margin: 10px 0px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #2b772e;
  text-align: center;
  font-weight: bold;
  color: #2b772e;
}
@media only screen and (min-width: 1100px) {
  .message_box .box {
    width: 50%;
  }
}

.cart {
  text-align: center;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .cart {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    width: 90%;
    font-size: 75%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .cart {
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    width: 90%;
    font-size: 85%;
  }
}
@media only screen and (min-width: 1100px) {
  .cart {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    margin-top: 80px;
    font-size: 100%;
  }
}

.cart .remove {
  background: none;
  border: none;
  color: #0067ab;
  cursor: pointer;
  padding: 0px;
}

.cart .remove:hover {
  text-decoration: underline;
}

.cart table {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
  .cart table, .cart th, td {
    display: block;
  }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
  .cart thead {
    left: -999px;
    visibility: hidden;
    position: absolute;
  }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
  .cart td span {
    display: block;
    margin-bottom: 5px;
    position: absolute;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .cart td span {
    display: none;
  }
}
@media only screen and (min-width: 1100px) {
  .cart td span {
    display: none;
  }
}

.cart table,
.cart th,
td {
  border: 1px solid black;
  border-collapse: collapse;
  padding: 15px;
  background: #f5f5f5;
}

.cart table input {
  text-align: center;
  font-size: 100%;
  width: 130px;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .cart table input {
    position: relative;
    margin-left: 130px;
  }
}

.buy-warning {
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .buy-warning {
    width: 90%;
  }
}
@media only screen and (min-width: 1100px) {
  .buy-warning {
    width: 50%;
    margin-top: 40px;
  }
}

.cart_div {
  float: right;
  font-weight: bold;
  position: relative;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .cart_div {
    margin-right: 75px;
    margin-top: -50px;
    font-size: 70%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .cart_div {
    margin-right: 125px;
    margin-top: -80px;
    font-size: 100%;
  }
}
@media only screen and (min-width: 1100px) {
  .cart_div {
    margin-right: 150px;
    margin-top: -120px;
    font-size: 150%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .cart_div img {
    width: 17px;
    height: 17px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .cart_div img {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (min-width: 1100px) {
  .cart_div img {
    width: 50px;
    height: 50px;
  }
}

.cart_div a {
  color: #000;
}

.cart_div span {
  background: #f68b1e;
  padding: 2px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  color: #fff;
  text-align: center;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .cart_div span {
    font-size: 70%;
    width: 16px;
    height: 16px;
    top: -10px;
    left: 5px;
    line-height: 10px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .cart_div span {
    font-size: 75%;
    width: 20px;
    height: 20px;
    top: -10px;
    left: 11px;
    line-height: 12px;
  }
}
@media only screen and (min-width: 1100px) {
  .cart_div span {
    font-size: 100%;
    width: 30px;
    height: 30px;
    top: -17px;
    left: 25px;
    line-height: 25px;
  }
}

.cart .remove {
  background: none;
  border: none;
  color: #0067ab;
  cursor: pointer;
  padding: 0px;
}

.cart .remove:hover {
  text-decoration: underline;
}

.buy-btn {
  width: 20%;
  margin-left: auto;
  margin-right: auto;
}

.gallery {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  border: 3px solid black;
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .gallery {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 1100px) {
  .gallery {
    margin-bottom: 60px;
  }
}

.gallery img {
  transition: 1s;
  padding: 20px;
  width: 200px;
}

.gallery img:hover {
  transform: rotateY(150deg);
}

.gallery-head {
  display: block;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
  font-weight: bold;
  color: #fff;
  text-decoration-line: 1px solid black;
  text-shadow: 5px 5px 5px grey;
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .gallery-head {
    font-size: 250%;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1100px) {
  .gallery-head {
    font-size: 400%;
    margin-bottom: 60px;
  }
}

.jumping-photos {
  display: grid;
  grid-template-columns: repeat(4, auto);
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}

.jumping-photos img {
  max-width: 410px;
  max-height: 400px;
  padding: 10px;
}

.koptekst {
  background: #00c0c0;
  color: gray;
  text-shadow: 2px 2px 2px black;
  border: 1px solid black;
  border-radius: 10px;
  text-align: center;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .koptekst {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    font-size: 90%;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .koptekst {
    font-size: 90%;
    width: 40%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media only screen and (min-width: 1100px) {
  .koptekst {
    font-size: 130%;
    width: 30%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.newsflash {
  margin-right: auto;
  margin-left: auto;
  width: 80%;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .newsflash {
    font-size: 50%;
    border: 1px solid red;
    box-shadow: 3px 3px 5px black;
    padding: 5px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .newsflash {
    font-size: 70%;
    border: 3px solid red;
    box-shadow: 5px 5px 7px black;
    padding: 10px;
  }
}
@media only screen and (min-width: 1100px) {
  .newsflash {
    font-size: 110%;
    border: 5px solid red;
    box-shadow: 8px 8px 10px black;
    padding: 20px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
  .info .info-txt li {
    margin-bottom: 12px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .info .info-txt li {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1100px) {
  .info .info-txt li {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .info .info-txt {
    font-size: 70%;
    padding: 15px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .info .info-txt {
    font-size: 80%;
    padding: 30px;
  }
}
@media only screen and (min-width: 1100px) {
  .info .info-txt {
    flex: 75%;
    font-size: 100%;
    padding: 80px;
  }
}

.in-out-pict {
  border: 2px solid black;
  border-radius: 10px;
  box-shadow: 10px 10px 10px gray;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .in-out-pict {
    width: 85%;
    padding: 10px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .in-out-pict {
    width: 80%;
    padding: 15px;
  }
}
@media only screen and (min-width: 1100px) {
  .in-out-pict {
    display: flex;
    width: 90%;
    padding: 30px;
  }
}
@media only screen and (min-width: 1100px) {
  .in-out-pict .in-pict {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .in-out-pict .in-pict img {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .in-out-pict .in-pict img {
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1100px) {
  .in-out-pict .in-pict img {
    flex: 1;
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
    margin-right: 35px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .in-out-pict .out-pict img {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .in-out-pict .out-pict img {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (min-width: 1100px) {
  .in-out-pict .out-pict img {
    flex: 1;
    width: 100%;
    height: 100%;
  }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
  .location {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .location {
    margin-top: 85px;
  }
}
@media only screen and (min-width: 1100px) {
  .location {
    display: flex;
    margin-top: 130px;
    margin-bottom: -250px;
  }
}
.location .location-text span {
  font-weight: bold;
}
@media only screen and (min-width: 1100px) {
  .location .location-text p {
    flex: 1;
    margin-left: 50px;
  }
}
@media only screen and (min-width: 1100px) {
  .location .location-text ul {
    flex: 1;
    margin-left: 100px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .location .location-text li {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .location .location-text li {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1100px) {
  .location .location-text li {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .location .location-text {
    font-size: 80%;
    font-style: italic;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .location .location-text {
    font-size: 80%;
    font-style: italic;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 1100px) {
  .location .location-text {
    font-size: 130%;
    font-style: italic;
    width: 35%;
    padding-top: 160px;
    margin-left: auto;
    margin-right: auto;
  }
}
.location .location-map {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .location .location-map {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .location .location-map {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 1100px) {
  .location .location-map {
    width: 45%;
    margin-left: auto;
    margin-right: auto;
  }
}
.location .location-map .responsive-frame {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 70%;
}

.about-wrapper {
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .about-wrapper {
    border: 1px solid black;
    box-shadow: 3px 3px 5px gray;
    width: 85%;
    margin-top: 10px;
    padding: 5px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 1099px) {
  .about-wrapper {
    border: 2px solid black;
    box-shadow: 5px 5px 7px gray;
    width: 80%;
    margin-top: 20px;
    padding: 15px;
  }
}
@media only screen and (min-width: 1100px) {
  .about-wrapper {
    border: 3px solid black;
    box-shadow: 7px 7px 10px gray;
    width: 75%;
    margin-top: 60px;
    padding: 25px;
  }
}/*# sourceMappingURL=style.css.map */