 
body {
  padding: 0;
  margin: 0;
  font-family: Karla,  sans-serif; 
  /* font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif; */
  margin-left: 30px; 
  margin-right: 30px; 
}

a {
  color: inherit;
  text-decoration: underline;
  font-style: italic;
}

* {
  box-sizing: border-box;
}


.logo {
  width: 150px;
  cursor: pointer;
  /* position: relative;
  float: left; */
}

.goog-te-gadget {
    color:black;
    margin-left: auto;
    width: 10rem;
}
.goog-te-gadget .goog-te-combo {
    color:#666;
}

@media screen and (max-width: 450px){
  .body {
    margin-left: 15px;  
    margin-right: 15px; 
  }
  .bodydiv {
    margin-left: 15px;  
    margin-right: 15px; 
  }
  .logo {
    width: 130px;
    cursor: pointer;
    text-align: left; 
    width: 200px;
  }
  .feedback-dialog {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      height: 90%;
      width: 95%;
      margin: auto;
      border-radius: 5px;
    }
}
 
@media screen and (min-width: 940px) {
  .logo {
    width: 300px;
  }
  }
  @media screen and (max-width: 350px) {
  .logo {
    width: 500px;
  }
  }


.loading {
  display: flex;
  justify-content: center;
  width: 100%;
}

.spinner {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  margin: auto;
}
.spinner div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: grey;
  animation: spinner 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.spinner div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s;
}
.spinner div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s;
}
.spinner div:nth-child(3) {
  left: 56px;
  animation-delay: 0;
}
@keyframes spinner {
  0% {
    top: 8px;
    height: 64px;
  }
  50%,
  100% {
    top: 24px;
    height: 32px;
  }
}

a:hover {
  color: inherit;
}
 
.art-offered {
  height: 25px;
  width: 25px;
  background-color: #556B2F;
  border-radius: 50%;
  display: inline-block;
}